Skip to content

Commit

Permalink
Merge pull request #60 from nyurik/lints
Browse files Browse the repository at this point in the history
Cleanup CI, make clippy pass
  • Loading branch information
JakWai01 authored Feb 4, 2025
2 parents 6199e52 + 13fb6f2 commit 138cbd2
Show file tree
Hide file tree
Showing 7 changed files with 307 additions and 343 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [ published ]
workflow_dispatch:

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: taiki-e/install-action@v2
with: { 'tool': 'just' }
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
- run: just ci-test
Loading

0 comments on commit 138cbd2

Please sign in to comment.