Skip to content

test: implement repository-wide unit tests #17

test: implement repository-wide unit tests

test: implement repository-wide unit tests #17

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:

Check failure on line 12 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 12, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: setup
steps:
- name: Import setup config
uses: ./.github/workflows/setup.yml
- name: Build
run: cargo build --verbose
- name: Clippy
run: cargo clippy --verbose -- -D warnings
- name: Tests
run: cargo test --verbose
- name: Fmt
run: cargo fmt -- --check