This commit is contained in:
Dario Nieuwenhuis
2023-03-27 03:33:20 +02:00
parent cffc3fc795
commit ed601d439a
3 changed files with 53 additions and 0 deletions

29
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
merge_group:
env:
CARGO_TERM_COLOR: always
jobs:
build-nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Check fmt
run: cargo fmt -- --check
- name: Build
run: ./ci.sh