diff options
author | MR Lemon <matt@matthewlemon> | 2020-05-16 21:17:25 +0100 |
---|---|---|
committer | MR Lemon <matt@matthewlemon> | 2020-05-16 21:17:32 +0100 |
commit | a344ca599d4e972bfc818d2bff492d60540ba445 (patch) | |
tree | a0155c1fbcc196c16e1b7b6546b937622e6a3db5 /.github/workflows/tests.yml | |
parent | c7f776e9c7009917ab99881b57f05b5aa910b30c (diff) |
prep for bump to 1.0.4 - nox tests, actions, etc
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r-- | .github/workflows/tests.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..368cf68 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,16 @@ +name: Tests +on: push +env: + GITHUB_ACTIONS_RUNNER: runner +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v1 + with: + python-version: 3.8 + architecture: x64 + - run: pip install nox==2019.11.9 + - run: pip install poetry==1.0.5 + - run: nox
\ No newline at end of file |