diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 66b617b..2973a6c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,6 +11,7 @@ jobs: os: windows-latest - target: x86_64-unknown-linux-gnu os: ubuntu-latest + continue-on-error: true name: Check runs-on: ${{ matrix.os }} steps: @@ -24,7 +25,6 @@ jobs: - name: Run cargo check uses: clechasseur/rs-cargo@v2 - continue-on-error: true with: command: check @@ -36,6 +36,7 @@ jobs: os: windows-latest - target: x86_64-unknown-linux-gnu os: ubuntu-latest + continue-on-error: true name: Test Suite runs-on: ${{ matrix.os }} steps: @@ -49,7 +50,6 @@ jobs: - name: Run cargo test uses: clechasseur/rs-cargo@v2 - continue-on-error: true with: command: test @@ -61,6 +61,7 @@ jobs: os: windows-latest - target: x86_64-unknown-linux-gnu os: ubuntu-latest + continue-on-error: true name: Lints runs-on: ${{ matrix.os }} steps: @@ -75,14 +76,12 @@ jobs: - name: Run cargo fmt uses: clechasseur/rs-cargo@v2 - continue-on-error: true with: command: fmt args: --all -- --check - name: Run cargo clippy uses: clechasseur/rs-cargo@v2 - continue-on-error: true with: command: clippy args: -- -D warnings