Skip to content

Commit

Permalink
Add github workflow for push and pull_request
Browse files Browse the repository at this point in the history
  • Loading branch information
mirhossein committed Jul 20, 2024
1 parent 21877ef commit 2595aa8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install deps
run: |
pip install --user pdm
pip install -U pip
pdm install
- name: Lint
run: pdm run lint
- name: Test
run: pdm run test

0 comments on commit 2595aa8

Please sign in to comment.