cargo odra test does not fail if Odra.toml is empty (#90) #266
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci-cargo-odra | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- release/* | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
branches: | |
- master | |
- develop | |
- feature/* | |
- release/* | |
- '*.*.*' | |
paths-ignore: | |
- "**.md" | |
jobs: | |
build_and_test: | |
name: Build and test | |
runs-on: buildjet-8vcpu-ubuntu-2204 # We use buildjet instead GH's free ubuntu-latest for faster builds | |
steps: | |
- uses: extractions/setup-just@v1 | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
components: rustfmt, clippy | |
- run: just prepare | |
- run: just check-lint | |
- run: just install | |
- run: just test-project-generation-on-future-odra | |
- run: just test-workspace-generation-on-future-odra | |
- run: just test-project-generation-on-stable-odra | |
- run: just test-workspace-generation-on-stable-odra |