Skip to content

Commit

Permalink
Fix beta & nightly builds
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleywiser authored May 21, 2021
1 parent dcac726 commit 8a47e8a
Showing 1 changed file with 31 additions and 14 deletions.
45 changes: 31 additions & 14 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,19 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: beta
- name: Build
run: cargo build --verbose --all
- name: Run tests
run: cargo test --verbose --all
- name: Docs
run: cargo doc --verbose --all
override: true
- uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --all
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all
- uses: actions-rs/cargo@v1
with:
command: doc
args: --verbose --all

build_nightly:
runs-on: ubuntu-latest
Expand All @@ -49,12 +56,19 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- name: Build
run: cargo build --verbose --all
- name: Run tests
run: cargo test --verbose --all
- name: Docs
run: cargo doc --verbose --all
override: true
- uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --all
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all
- uses: actions-rs/cargo@v1
with:
command: doc
args: --verbose --all

check_big_endian:
runs-on: ubuntu-latest
Expand All @@ -65,5 +79,8 @@ jobs:
with:
toolchain: stable
target: powerpc64-unknown-linux-gnu
- name: Check
run: cargo check --verbose --target powerpc64-unknown-linux-gnu --lib --bins --tests
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --verbose --lib --bins --tests

0 comments on commit 8a47e8a

Please sign in to comment.