Skip to content

Merge pull request #265 from KSXGitHub/dependabot/github_actions/KSXG… #1124

Merge pull request #265 from KSXGitHub/dependabot/github_actions/KSXG…

Merge pull request #265 from KSXGitHub/dependabot/github_actions/KSXG… #1124

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4
timeout-minutes: 1
continue-on-error: true
if: matrix.os != 'macos-latest' # Cache causes errors on macOS
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ github.job }}-${{ runner.os }}-${{ hashFiles('rust-toolchain') }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ github.job }}-${{ runner.os }}-${{ hashFiles('rust-toolchain') }}-${{ hashFiles('**/Cargo.lock') }}
${{ github.job }}-${{ runner.os }}-${{ hashFiles('rust-toolchain') }}-
- uses: actions-rs/toolchain@v1
with:
profile: minimal
override: 'true'
default: 'true'
- name: Test (dev)
env:
FMT: 'false'
LINT: 'false'
DOC: 'true'
BUILD: 'true'
TEST: 'true'
BUILD_FLAGS: '--locked'
TEST_FLAGS: '--no-fail-fast'
run: ./test.sh
- name: Test (release)
env:
RUSTFLAGS: '-D warnings'
RUSTDOCFLAGS: '-D warnings'
FMT: 'false'
LINT: 'false'
DOC: 'true'
BUILD: 'true'
TEST: 'true'
BUILD_FLAGS: '--locked'
TEST_FLAGS: '--no-fail-fast'
run: ./test.sh --release