Skip to content

Commit

Permalink
Create pytest workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
OdysseasKr authored Nov 10, 2024
1 parent eb1cc98 commit 1fe8df8
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Pylint

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python
run: uv python install
- name: Run tests
run: uv run pytest tests

0 comments on commit 1fe8df8

Please sign in to comment.