Skip to content

Commit

Permalink
Merge pull request #391 from andersonfrailey/autotesting
Browse files Browse the repository at this point in the history
Add GitHub Actions for Testing
  • Loading branch information
andersonfrailey authored May 29, 2021
2 parents 7d9c2cb + 371b8eb commit 75fc0f2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test data

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]
steps:
- name: checkout
uses: actions/checkout@master
with:
persist-credentials: false

- name: Setup Miniconda using Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: taxdata-dev
environment-file: environment.yml
python-version: ${{ matrix.python-version }}
auto-activate-base: false

- name: Test
shell: bash -l {0}
run: pytest -m "not requires_pufcsv"

0 comments on commit 75fc0f2

Please sign in to comment.