Skip to content

fix rust tests

fix rust tests #8

Workflow file for this run

name: Rs
on:
push:
paths:
- rust/**
- Makefile
- _data/**
- .github/workflows/rust.yml
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
os:
- ubuntu-latest
- windows-latest
include:
- toolchain: stable
os: macos-13
- toolchain: stable
os: macos-latest
- toolchain: "1.1"
os: ubuntu-latest
- toolchain: "1.10"
os: ubuntu-latest
- toolchain: "1.20"
os: ubuntu-latest
- toolchain: "1.28"
os: ubuntu-latest
- toolchain: "1.30"
os: ubuntu-latest
- toolchain: "1.40"
os: ubuntu-latest
- toolchain: "1.50"
os: ubuntu-latest
- toolchain: "1.60"
os: ubuntu-latest
- toolchain: "1.70"
os: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- run: make rstest