Skip to content

pre: added filtering #1

pre: added filtering

pre: added filtering #1

Workflow file for this run

name: Check
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
env:
CARGO_TERM_COLOR: always
jobs:
format:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Format
with:
toolchain: nightly
run: cargo +nightly fmt

Check failure on line 22 in .github/workflows/check.yml

View workflow run for this annotation

GitHub Actions / Check

Invalid workflow file

The workflow is not valid. .github/workflows/check.yml (Line: 22, Col: 9): Unexpected value 'run' .github/workflows/check.yml (Line: 19, Col: 9): Required property is missing: uses
check:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Check
with:
toolchain: nightly
run: cargo +nightly check
lint:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Lint
with:
toolchain: nightly
run: cargo +nightly clippy
# build:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v4
# - uses: Swatinem/rust-cache@v2
# - name: Build
# run: cargo build --release --verbose
# # - name: Run tests
# # run: cargo test --verbose