Skip to content

chore: update dependencies #42

chore: update dependencies

chore: update dependencies #42

Workflow file for this run

name: RnR
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
verify:
name: Verify the project
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build project
shell: bash
run: cargo build --verbose
- name: Run tests
shell: bash
run: cargo test --verbose