Skip to content

Check only (no longer test) at the MSRV #65

Check only (no longer test) at the MSRV

Check only (no longer test) at the MSRV #65

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
os_tests:
name: "Test with ${{ matrix.channel }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
channel:
- stable
- beta
- nightly
- 1.63.0 # msrv
os:
- macos-11
- windows-2022
- ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Update rust
run: rustup default ${{ matrix.channel }}
run: rustup update ${{ matrix.channel }} --no-self-update

Check failure on line 31 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 31, Col: 7): 'run' is already defined
- name: Tests
run: cargo +${{ matrix.channel }} test --all