Skip to content

Commit

Permalink
Migrate from travis to github actions (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
donheshanthaka committed Oct 3, 2022
1 parent 7a1dc89 commit 55464ac
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,49 @@
name: Github Actions

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]

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 nose2 coveralls randomfiletree
- name: Test with nose2
run: |
nose2 --with-coverage
- name: Upload to coveralls
run: |
pip3 install --upgrade coveralls
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_PARALLEL: true


coveralls:
name: Coveralls
needs: build
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finished
run: |
pip3 install --upgrade coveralls
coveralls --service=github --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 55464ac

Please sign in to comment.