You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
758 B
50 lines
758 B
name: CI |
|
|
|
on: |
|
pull_request: |
|
branches: |
|
- '*' |
|
push: |
|
branches: |
|
- main |
|
|
|
defaults: |
|
run: |
|
shell: bash |
|
|
|
jobs: |
|
all: |
|
name: All |
|
|
|
strategy: |
|
matrix: |
|
os: |
|
- ubuntu-latest |
|
- macos-latest |
|
- windows-latest |
|
|
|
runs-on: ${{matrix.os}} |
|
|
|
env: |
|
RUSTFLAGS: --deny warnings |
|
|
|
steps: |
|
- uses: actions/checkout@v2 |
|
|
|
- name: Install Rust Toolchain Components |
|
uses: actions-rs/toolchain@v1 |
|
with: |
|
components: clippy, rustfmt |
|
override: true |
|
toolchain: stable |
|
|
|
- uses: Swatinem/rust-cache@v1 |
|
|
|
- name: Test |
|
run: cargo test --all |
|
|
|
- name: Clippy |
|
run: cargo clippy --all --all-targets |
|
|
|
- name: Format |
|
run: cargo fmt --all --check |