Skip to content

Commit

Permalink
add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
hannob committed Jul 24, 2024
1 parent ac57a45 commit 66d8403
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/runci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: runci
"on":
- pull_request
- push

jobs:
build:
strategy:
matrix:
python-version: [3.9, 3.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} ${{ matrix.os }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black ruff
- name: Run tests
shell: bash
run: |
./runci.sh

0 comments on commit 66d8403

Please sign in to comment.