From 44f32cecd76944da6a5598ca7cb8bd939e234940 Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Wed, 5 Aug 2020 15:38:28 +0200 Subject: [PATCH] Enable CI with GitHub Actions --- .github/workflows/tests.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..0724c09 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,14 @@ +name: CI +on: push +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==2020.5.24 + - run: pip install poetry==1.0.10 + - run: nox