Bump actions/checkout from 4.1.0 to 4.1.1 #86
Workflow file for this run
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: build | |
on: | |
push: | |
release: | |
types: [created, published] | |
env: | |
PYTHON_VERSION: '3.11' | |
POETRY_VERSION: '1.4.1' | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423 # v2.6.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Install Linux Dependencies | |
run: > | |
sudo apt-get update -qq && sudo apt-get install -qq --no-install-recommends | |
gir1.2-gtk-4.0 libgirepository1.0-dev libgtksourceview-5-dev libadwaita-1-dev | |
graphviz | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install Poetry ${{ env.POETRY_VERSION }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry==$POETRY_VERSION | |
poetry config virtualenvs.in-project true | |
- name: Install dependencies | |
run: poetry install --no-interaction | |
- name: Gaphor self-test | |
run: xvfb-run poetry run gaphor --self-test | |
- name: Test | |
run: xvfb-run poetry run pytest |