Skip to content

Commit

Permalink
gh: Re-enable nightly toolchain CI
Browse files Browse the repository at this point in the history
Signed-off-by: Samuel Ortiz <[email protected]>
  • Loading branch information
sameo committed Dec 14, 2022
1 parent 6cabb37 commit dfeab21
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,21 @@ jobs:

# example_shadow cargo run
- name: Run example_shadow
run: cargo run
run: cargo run
working-directory: ./example_shadow

# build on nightly
# - uses: actions-rs/toolchain@v1
# with:
# toolchain: nightly
# override: true
# - name: Build on nightly
# run: cargo build --release
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Build on nightly
run: cargo build --release

test:
strategy:
matrix:
# rust: [stable, beta, nightly]
rust: [stable, beta]
rust: [stable, beta, nightly]
runs-on: ubuntu-latest
steps:
- name: Setup Rust
Expand Down Expand Up @@ -114,4 +113,4 @@ jobs:
- name: Publish
shell: bash
run: |
cargo publish --token ${{ secrets.CRATES_GITHUB_TOKEN }}
cargo publish --token ${{ secrets.CRATES_GITHUB_TOKEN }}

0 comments on commit dfeab21

Please sign in to comment.