Forgot to show window :D #6
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: Projector CI | |
# Make sure CI fails on all warnings, including Clippy lints | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
target-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: lint | |
run: cargo clippy --all-targets --all-features | |
- name: Test | |
run: cargo test | |
- name: Bench | |
run: cargo bench | |
- name: Build | |
run: cargo build | |
# TODO: Add windows and linux build targets as platform is implemented! |