Skip to content

remove build job from test workflow #59

remove build job from test workflow

remove build job from test workflow #59

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- 'v*'
pull_request:
jobs:
unit_tests:

Check failure on line 11 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 11, Col: 3): The workflow must contain at least one job with no dependencies.
name: Unit Tests
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install Nix ❄
uses: DeterminateSystems/nix-installer-action@v4
- name: Link Cachix 🔌
uses: cachix/cachix-action@v12
with:
name: '${{ vars.CACHIX_CACHE_NAME }}'
authToken: '${{ secrets.CACHIX_CACHE_AUTH_TOKEN }}'
- name: run unit tests 🔨
run: nix build .#checks.x86_64-linux.test --print-build-logs
- name: run linter checks with clippy 🔨
run: nix build .#checks.x86_64-linux.lint --print-build-logs
- name: audit for reported security problems 🔨
run: nix build .#checks.x86_64-linux.audit --print-build-logs