Skip to content

upgrade actions/checkout to v4 #32

upgrade actions/checkout to v4

upgrade actions/checkout to v4 #32

Workflow file for this run

name: Test
on:
push:
branches:
- 'main'
jobs:
test:
strategy:
matrix:
os:
- ubuntu-22.04
- windows-2022
toolchain:
- 1.75.0
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: install rust
run: |
rustup toolchain install ${{ matrix.toolchain }} --profile minimal --no-self-update
rustup default ${{ matrix.toolchain }}
- name: run tests
run: cargo test --all