fayalite/.forgejo/workflows/test.yml
Jacob Lifshay 929e9f8b16
All checks were successful
/ test (push) Successful in 9m8s
ci: run cargo doc too to ensure docs continue to build
2024-07-10 23:06:29 -07:00

19 lines
550 B
YAML

on: [push, pull_request]
jobs:
test:
runs-on: debian-12
steps:
- uses: https://code.forgejo.org/actions/checkout@v3
with:
fetch-depth: 0
- run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.79.0
source "$HOME/.cargo/env"
echo "$PATH" >> "$GITHUB_PATH"
- uses: https://github.com/Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/master' }}
- run: cargo test
- run: cargo doc