ci: add fail-fast
This commit is contained in:
parent
17f39253d0
commit
343ffd9f6e
1 changed files with 3 additions and 5 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Build
|
name: CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -10,8 +10,9 @@ env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
tests:
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: ["ubuntu-latest"]
|
os: ["ubuntu-latest"]
|
||||||
rust:
|
rust:
|
||||||
|
@ -38,9 +39,6 @@ jobs:
|
||||||
toolchain: ${{ matrix.rust }}
|
toolchain: ${{ matrix.rust }}
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: cargo build --verbose
|
|
||||||
|
|
||||||
- uses: isbang/compose-action@v0.1
|
- uses: isbang/compose-action@v0.1
|
||||||
with:
|
with:
|
||||||
compose-file: ./docker-compose.test.yml
|
compose-file: ./docker-compose.test.yml
|
||||||
|
|
Loading…
Reference in a new issue