From 0ff253bce657508102be322383b2c58c497fb14f Mon Sep 17 00:00:00 2001 From: Kai Schlamp Date: Sat, 27 Apr 2024 09:12:40 +0000 Subject: [PATCH] Run CI with Github actions --- .github/workflows/ci.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 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..ba39e74 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,40 @@ +name: CI +on: + push: + branches: [main] + pull_request: + branches: [main] +jobs: + ci: + strategy: + fail-fast: false + matrix: + python-version: ["3.12"] + poetry-version: ["1.7.1"] + os: [ubuntu-latest] + runs-on: ${{ matrix.os }} + timeout-minutes: 15 + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Configure environment + run: cp example.env .env + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Setup Poetry + uses: abatilo/actions-poetry@v2 + with: + poetry-version: ${{ matrix.poetry-version }} + - name: Install dependencies + run: poetry install --with dev + - name: Setup Playwright + run: poetry run playwright install --with-deps + - name: Run linting + # https://github.com/actions/runner/issues/241#issuecomment-745902718 + shell: 'script -q -e -c "bash {0}"' + run: poetry run invoke lint + - name: Run tests + shell: 'script -q -e -c "bash {0}"' + run: poetry run invoke test --cov