Skip to content

Add github workflow for push and pull_request #1

Add github workflow for push and pull_request

Add github workflow for push and pull_request #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install deps
run: |
python3 -m pip install --user pdm
python3 -m pip install -U pip
pdm install

Check failure on line 12 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 12
- name: Lint
- run: pdm run lint
- name: Test
- run: pdm run test