Skip to content

Simplify cargo fmt run, run all tests #2

Simplify cargo fmt run, run all tests

Simplify cargo fmt run, run all tests #2

Workflow file for this run

name: Run tests
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
permissions: read-all
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Format
run: |

Check failure on line 17 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
cargo fmt --check
- name: Build
run: |
cargo build --profile release
- name: Run all tests
run: |
cargo test --all-features --profile release