Skip to content

Commit

Permalink
Merge pull request #7 from 0xnu/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
0xnu authored Sep 25, 2024
2 parents d858a2e + 732cb81 commit 2e7d85e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Tests

on:
push:
branches: [develop]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12]

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: python3 -m test

0 comments on commit 2e7d85e

Please sign in to comment.