Skip to content

Commit

Permalink
ci(actions): Replace Travis CI with GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed Oct 3, 2024
1 parent 19c795d commit 4b90a94
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 96 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: build

on:
push:
pull_request:

jobs:
build:
strategy:
matrix:
version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- name: Check out repository
uses: actions/checkout@v4

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

- name: Install package
run: pip install .

- name: Run tests
run: python -m unittest discover -v
96 changes: 0 additions & 96 deletions .travis.yml

This file was deleted.

0 comments on commit 4b90a94

Please sign in to comment.