Use enum for event in scuba!
macro
#55
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 | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 12 * * 1' # 12pm Monday | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2023-05-28 | |
components: clippy, rustfmt | |
# We use rustfmt 2.0 for formatting, which differs from the released | |
# version installed by Cargo | |
# - run: cargo fmt -- --check | |
- run: cargo clippy | |
- run: cargo build | |
- run: cargo test |