1

Merge pull request #8 from ewpratten/ewpratten/ci_improvements

Make some improvements to the CI process
This commit is contained in:
Evan Pratten 2023-07-20 15:15:43 -04:00 committed by GitHub
commit 2adcf0dcd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 2 deletions

View File

@ -18,12 +18,15 @@ jobs:
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
toolchain: stable toolchain: stable
- uses: actions-rs/cargo@v1
- name: Compile
uses: actions-rs/cargo@v1
with: with:
command: build command: build
args: --release args: --release
- uses: actions-rs/cargo@v1 - name: Run Tests
uses: actions-rs/cargo@v1
with: with:
command: test command: test
args: --release args: --release

19
.github/workflows/clippy.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Clippy check
on:
push:
permissions:
checks: write
contents: read
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features