Skip to content

Commit

Permalink
feat: do not allow warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
erwanvivien committed Oct 30, 2023
1 parent 876131f commit e20d1bd
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- env:
RUSTFLAGS: "--deny warnings"

- name: Install wasm32-unknown-unknown target
run: rustup target add wasm32-unknown-unknown
Expand Down Expand Up @@ -53,7 +55,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install wasm32-unknown-unknown target
run: rustup target add wasm32-unknown-unknown
Expand All @@ -70,7 +72,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Tests
- name: Run tests
Expand All @@ -80,8 +82,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Typos
- name: typos-action
uses: crate-ci/[email protected]
- name: format
run: cargo fmt --all -- --check

0 comments on commit e20d1bd

Please sign in to comment.