Skip to content

Add new workflow for pushes+PRs to master #1

Add new workflow for pushes+PRs to master

Add new workflow for pushes+PRs to master #1

Workflow file for this run

name: Master
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
check-test-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check
run: cargo check --verbose
- name: Test
run: cargo test --verbose
- name: Format
run: cargo +nightly fmt --verbose --check