From 0fe1b9dab385433f64eb6dff992dc5041fba4e5f Mon Sep 17 00:00:00 2001 From: radex Date: Mon, 8 Jul 2024 14:30:38 +0200 Subject: [PATCH] add ci --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..7439819 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CI + +on: + pull_request: + push: + branches: [master] + +jobs: + ci-check: + runs-on: ubuntu-22.04 + name: Check CI + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version-file: '.python-version' + - run: poetry install --with dev + - run: ./ci.sh