Skip to content

update pipeline os versions #205

update pipeline os versions

update pipeline os versions #205

Workflow file for this run

on: [push]
jobs:
test:
name: test
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: test
run: for i in 1 2 3; do cargo test --workspace -- --test-threads=1 && break; done