Skip to content

Merge pull request #1 from voidreamer/feat/flat-packages-and-tilde-ex… #5

Merge pull request #1 from voidreamer/feat/flat-packages-and-tilde-ex…

Merge pull request #1 from voidreamer/feat/flat-packages-and-tilde-ex… #5

Workflow file for this run

name: CI
on:
push:
branches: [main, staging]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Format check
run: cargo fmt --all -- --check
continue-on-error: true
- name: Clippy
run: cargo clippy -- -D warnings
continue-on-error: true
- name: Build
run: cargo build --release
- name: Test
run: cargo test