Skip to content

Commit

Permalink
Set up GitHub Actions just in case.
Browse files Browse the repository at this point in the history
  • Loading branch information
vytas7 committed Sep 18, 2024
1 parent cb8068a commit 33e3b77
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Run tests using Tox.
name: tests

on:
push:
branches:
- "*"
pull_request:
branches:
- master

jobs:
tox:
name: tox
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 10

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Run Tox
run: |
pip install --upgrade pip
pip install --upgrade tox
tox

0 comments on commit 33e3b77

Please sign in to comment.