Skip to content

Commit

Permalink
self-hosted-ubuntu-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkarex committed Apr 29, 2024
1 parent 645bedc commit 8e0800f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,25 @@ on:
jobs:

lint:
runs-on: ubuntu-latest
runs-on: self-hosted-ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: jpetrucciani/black-check@master

pytest:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
os: [self-hosted-ubuntu-latest]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Poetry
run: pip3 install poetry==1.5.1

run: pipx install poetry

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
Expand Down

0 comments on commit 8e0800f

Please sign in to comment.