Skip to content

Commit

Permalink
next try
Browse files Browse the repository at this point in the history
  • Loading branch information
johannst committed Jul 18, 2024
1 parent d9a3121 commit 1542935
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,26 @@ env:
CARGO_TERM_COLOR: always

jobs:
init:
infra:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: make -C container

build:
runs-on: ubuntu-latest
needs: init
needs: infra
steps:
- uses: actions/checkout@v2
- run: cargo fmt -- --check
- run: podman run --rm -it -v $PWD:/work -w /work ks-rs cargo build --verbose
- run: podman run --rm -it -v $PWD:/work -w /work ks-rs cargo test --verbose

doc:
runs-on: ubuntu-latest
needs: init
needs: infra
steps:
- uses: actions/checkout@v2
- name: Generate doc
run: |
podman run --rm -it -v $PWD:/work -w /work ks-rs cargo doc --no-deps
Expand Down

0 comments on commit 1542935

Please sign in to comment.