v2.3.1 #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
docker: | |
image: docker:26.1.3 | |
options: --privileged | |
ports: | |
- 2375:2375 | |
env: | |
DOCKER_TLS_CERTDIR: "" | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.11 | |
- name: Install Poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
echo "export PATH=\"$HOME/.local/bin:$PATH\"" >> $GITHUB_ENV | |
- name: Install dependencies | |
run: | | |
poetry install | |
- name: Install coverage and codecov | |
run: | | |
poetry add coverage codecov | |
- name: Run tests with coverage | |
env: | |
DOCKER_HOST: tcp://localhost:2375 | |
run: | | |
poetry run coverage run -m pytest | |
poetry run coverage report | |
poetry run coverage xml | |
- name: Show coverage report | |
run: | | |
cat coverage.xml | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage.xml | |
fail_ci_if_error: true |