Skip to content

Boosts Fix

Boosts Fix #2

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches-ignore:
- master
paths:
- '**.rs'
- '**.toml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Cargo Clippy
run: cargo clippy -- -W warnings
- name: Cargo Test
run: cargo test --verbose