mirror of
https://github.com/redstrate/Kawari.git
synced 2025-05-09 05:37:45 +00:00
38 lines
818 B
YAML
38 lines
818 B
YAML
name: Main
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [windows-latest, ubuntu-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/cache@v4
|
|
id: cache-deps
|
|
with:
|
|
path: |
|
|
~/.cargo/bin/
|
|
~/.cargo/registry/index/
|
|
~/.cargo/registry/cache/
|
|
~/.cargo/git/db/
|
|
target/
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
- name: Build
|
|
run: cargo build --verbose --no-default-features
|
|
- name: Run clippy
|
|
run: cargo clippy --no-default-features
|
|
- name: Run tests
|
|
run: cargo test --verbose --no-default-features
|