Skip to content

Merge pull request #8 from ikalnytskyi/chore/ci-deprecations #73

Merge pull request #8 from ikalnytskyi/chore/ci-deprecations

Merge pull request #8 from ikalnytskyi/chore/ci-deprecations #73

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
Test:
runs-on: ubuntu-latest
services:
graphviz:
image: ghcr.io/ikalnytskyi/dot:latest
options: --name graphviz --interactive
credentials:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Set up dependencies
run: |
sudo apt install inkscape
cat << EOF > /usr/local/bin/dot
#!/bin/sh
exec /usr/bin/docker exec --interactive graphviz /usr/bin/dot \$@
EOF
chmod +x /usr/local/bin/dot
python -m pip install --upgrade pip
python -m pip install --requirement requirements.txt
- name: Run Holocron
run: holocron run compile