From d6099ebffa2691b986af6715fe8255d0a17e1359 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Wed, 22 Jun 2022 20:21:19 +0200 Subject: [PATCH] Try GitHub actions for CI --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..4baed24 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,10 @@ +steps: +- uses: actions/checkout@v3 +- name: Install poetry + run: pipx install poetry +- uses: actions/setup-python@v4 + with: + python-version: '3.10' + cache: 'poetry' +- run: poetry install +- run: poetry run inv tests