0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 14:32:52 -04:00
websurfx/.github/workflows/rust.yml

37 lines
819 B
YAML
Raw Normal View History

2023-04-28 06:12:56 -04:00
name: Rust
on:
push:
branches:
- "**"
2023-04-28 06:12:56 -04:00
pull_request:
branches:
- "rolling"
2023-04-28 06:12:56 -04:00
env:
CARGO_TERM_COLOR: always
jobs:
build:
2023-04-28 06:51:00 -04:00
runs-on: ubuntu-latest
2023-04-28 06:12:56 -04:00
strategy:
matrix:
toolchain:
- stable
steps:
- name: Cache Rust compilation
uses: metalbear-co/sccache-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# Optional, default is `sccache-`
cache-from: sccache-${{ runner.os }}-
# Optional, default is `sccache-latest`
cache-to: sccache-${{ runner.os }}-${{ github.sha }}
2023-04-28 06:12:56 -04:00
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose