This commit is contained in:
2024-08-12 19:31:51 +02:00
parent 076dfd0a93
commit 5399f3ba6d
2 changed files with 0 additions and 166 deletions

View File

@@ -1,46 +0,0 @@
name: ci
on:
push:
branches: [senpai]
pull_request:
branches: [senpai]
env:
RUST_BACKTRACE: 1
RUST_LOG: trace
jobs:
test:
name: test
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Set up cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build projectable
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose