Skip to content

self-hosted-ubuntu-latest #2

self-hosted-ubuntu-latest

self-hosted-ubuntu-latest #2

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: self-hosted-ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jpetrucciani/black-check@master
pytest:
strategy:
matrix:
os: [self-hosted-ubuntu-latest]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==1.5.1
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install Dependencies
run: |
poetry env use "${{ matrix.python-version }}"
poetry install --no-interaction --no-cache
- name: Test with pytest
run: poetry run pytest --dist no -n 0