Skip to content

Commit

Permalink
Replace Travis CI by GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
encukou committed Jan 7, 2021
1 parent 4c876a3 commit d7ec71f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 33 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,32 @@
on:
push:
branches:
- master
- ci-test
pull_request:
branches:
- master

name: Run Tox tests

jobs:
tox_test:
name: Tox test
steps:
- uses: actions/checkout@v2
- name: Run Tox tests
id: test
uses: fedora-python/tox-github-action@master
with:
tox_env: ${{ matrix.tox_env }}
dnf_install: /usr/bin/make
strategy:
matrix:
tox_env: [
py27-c90, py35-c90, py36-c90,
py27-c99, py35-c99, py36-c99, py37-c99, py38-c99, py39-c99, py310-c99,
py27-c90, py35-cpp, py36-cpp, py37-cpp, py38-cpp, py39-cpp, py310-cpp,
]

# Use GitHub's Linux Docker host
runs-on: ubuntu-latest
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

0 comments on commit d7ec71f

Please sign in to comment.