Skip to content

Add test proving range restriction #3

Add test proving range restriction

Add test proving range restriction #3

Workflow file for this run

name: "CI"
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
lint:

Check failure on line 10 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
name: Lint
runs-on: ubuntu-latest
needs: [install_dependencies]
steps:
- uses: wyvox/action@v1
- name: Lints
run: pnpm lint
tests:
strategy:
matrix:
platform: [ubuntu-latest]
name: "Tests"
runs-on: "${{ matrix.platform }}"
needs: [install_dependencies]
steps:
- uses: wyvox/action@v1
- name: Tests
run: pnpm test