Actually run all the tests, not just make.
This commit is contained in:
parent
72243e116d
commit
9ea5e491a9
1 changed files with 12 additions and 3 deletions
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
|
|
@ -16,12 +16,12 @@ env:
|
|||
|
||||
jobs:
|
||||
tests:
|
||||
name: Tests
|
||||
name: Unix tests
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
os: [macos-latest, windows-latest, ubuntu-latest]
|
||||
os: [macos-latest, ubuntu-latest]
|
||||
toolchain: [nightly]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
@ -35,4 +35,13 @@ jobs:
|
|||
# Don't use a 'components:' entry--we don't need them with beta/nightly, plus nightly often doesn't have them
|
||||
override: true
|
||||
|
||||
- run: make
|
||||
- run: |
|
||||
(eval "$WASM_ENV" && script/build-wasm)
|
||||
make
|
||||
cargo build --release
|
||||
script/fetch-features
|
||||
script/generate-fixtures
|
||||
(eval "$WASM_ENV" && script/generate-fixtures-wasm)
|
||||
script/test
|
||||
script/test-wasm
|
||||
script/benchmark
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue