Skip to content

Update excluded_prefixes #353

Update excluded_prefixes

Update excluded_prefixes #353

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: dioptra-io/setup-poetry-action@v1
- name: Start services
run: docker compose up -d -t 0 traefik clickhouse minio postgres redis
- name: Install package
run: poetry install
- name: Run tests
run: sudo $(poetry env info -p)/bin/pytest --cov=iris --cov-report=xml --log-cli-level=INFO -m "not cifail"
- uses: codecov/codecov-action@v3
docker:
needs: [test]
runs-on: ubuntu-latest
strategy:
matrix:
image:
- iris-agent
- iris-api
- iris-worker
steps:
- uses: actions/checkout@v3
- uses: dioptra-io/publish-docker-action@v1
with:
file: ./dockerfiles/${{ matrix.image }}.dockerfile
image: dioptra-io/iris/${{ matrix.image }}
password: ${{ secrets.GITHUB_TOKEN }}
# platforms: linux/amd64,linux/arm64
push: ${{ github.event_name == 'push' && github.actor != 'dependabot[bot]' }}
mkdocs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: dioptra-io/setup-poetry-action@v1
- name: Install package
run: poetry install
- name: Build documentation
run: poetry run mkdocs build --strict
- name: Publish documentation
run: poetry run mkdocs gh-deploy --force --no-history --strict
if: ${{ github.ref == 'refs/heads/main' }}