Skip to content

Commit

Permalink
ci: use GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
teutat3s committed Aug 13, 2024
1 parent 5919d13 commit a1fba0b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 30 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Python CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python:
- {version: "3.9", toxenv: "py39"}
- {version: "3.10", toxenv: "py310"}
- {version: "3.11", toxenv: "py311"}
- {version: "3.12", toxenv: "py312"}

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python.version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python.version }}
- name: Install dependencies
run: python -m pip install tox
- name: Run tests
run: tox -e "${{ matrix.python.toxenv }}"
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

0 comments on commit a1fba0b

Please sign in to comment.