Skip to content

Commit

Permalink
Turn on stable CI
Browse files Browse the repository at this point in the history
  • Loading branch information
damszew committed Apr 19, 2024
1 parent 905c489 commit 52433cb
Showing 1 changed file with 29 additions and 30 deletions.
59 changes: 29 additions & 30 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Build
on: [push]

jobs:

nightly-clippy:
name: Nightly clippy
runs-on: ubuntu-latest
Expand Down Expand Up @@ -34,33 +33,33 @@ jobs:
command: test
args: -p serwus --all-features

# stable-clippy:
# name: Stable clippy
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# target: wasm32-unknown-unknown
# components: clippy
# override: true
# - uses: actions-rs/clippy-check@v1
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# args: --all-features
# name: Clippy Output
stable-clippy:
name: Stable clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
name: Clippy Output

# stable-tests:
# name: Stable tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# override: true
# - uses: actions-rs/cargo@v1
# with:
# command: test
# args: --all-features
stable-tests:
name: Stable tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features

0 comments on commit 52433cb

Please sign in to comment.