Skip to content

GitHub Actions use self-hosted runner #76

GitHub Actions use self-hosted runner

GitHub Actions use self-hosted runner #76

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- main
jobs:
lint:
if: github.event.pull_request.draft == false
runs-on: [self-hosted, self-hosted-ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: jpetrucciani/ruff-check@main
pytest:
if: github.event.pull_request.draft == false
strategy:
matrix:
os: [self-hosted-ubuntu-latest]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install pipx on Ubuntu
run: sudo apt-get update && sudo apt-get install -y pipx && pipx ensurepath
if: ${{ runner.os }} == "Linux"
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install Dependencies
run: |
poetry env use "${{ matrix.python-version }}"
poetry install
- name: Test with pytest
run: poetry run pytest
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}