diff options
| author | mat <github@matdoes.dev> | 2022-06-29 21:59:31 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-06-29 21:59:31 -0500 |
| commit | c6b724c817c5f8ba91df83e28995d42a34b517e0 (patch) | |
| tree | cc80d0707c8551f7525ebb9f8f379a48056c40f7 /.github | |
| parent | e8deda5d2e45eb634700614009cbcc5b35949e26 (diff) | |
| download | azalea-drasl-c6b724c817c5f8ba91df83e28995d42a34b517e0.tar.xz | |
Create check.yml
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/check.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 00000000..6010bf23 --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,12 @@ +on: push +name: Clippy check +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 |
