Skip to content

chore: update README (#14) #34

chore: update README (#14)

chore: update README (#14) #34

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
CI:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: ['stable', 'nightly']
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
profile: minimal
override: true
- name: Run tasks
run: |
sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
${{ matrix.toolchain == 'nightly' && 'task CI' || 'task CI:nobench' }}