From 60667232e536177d80907f0d8f114df0c23cb70e Mon Sep 17 00:00:00 2001 From: Michal S Date: Tue, 27 Sep 2022 13:15:02 +0100 Subject: [PATCH] Add CI to match other Rust projcets --- .github/workflows/test.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..8b7ba5d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,34 @@ +name: Lint Code +on: + workflow_dispatch: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +env: + AMETHYST_CODENAME: "Clippedy Clip" + +jobs: + formatting: + name: cargo fmt + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + components: rustfmt + - name: Format + uses: actions-rust-lang/rustfmt@v1.0.0 + clippy: + name: cargo clippy + runs-on: ubuntu-latest + container: ghcr.io/crystal-linux/crystal:latest + steps: + - uses: actions/checkout@v1 + - run: | + sudo pacman -Syu --needed --noconfirm + sudo pacman -S --noconfirm rust + - uses: actions-rs/clippy-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file