Add additional MIT license and fix missisng license for isomdl-macros #165
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: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build | |
- name: Run tests | |
run: | | |
cargo test | |
cd macros | |
cargo test | |
- name: Clippy | |
run: | | |
cargo clippy | |
cd macros | |
cargo clippy | |
- name: Fmt | |
run: | | |
cargo fmt -- --check | |
cd macros | |
cargo fmt -- --check |