Use bool #193
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
on: | |
push: | |
branches-ignore: ['master'] | |
workflow_call: | |
name: Push - Build, Unit Test | |
jobs: | |
build: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --verbose | |
- name: Test | |
run: cargo test --verbose | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: kiryuu | |
path: ./target/debug/kiryuu | |
tracing: | |
name: Check tracing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Check w/ tracing | |
run: cargo check --features tracing | |