File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ concurrency:
2020
2121jobs :
2222 build-latest :
23- runs-on : [self-hosted, Linux, X64]
23+ runs-on : ubuntu-latest
2424 steps :
2525 - name : Checkout repository
2626 uses : actions/checkout@v4
2727
2828 - name : Log in to Docker Hub
2929 uses : docker/login-action@v3
30- # if: github.event_name == 'push' # Only log in on pushes
30+ if : github.event_name == 'push' # Only log in on pushes
3131 with :
3232 username : ${{ secrets.DOCKER_USERNAME }}
3333 password : ${{ secrets.DOCKER_PASSWORD }}
Original file line number Diff line number Diff line change 1010
1111jobs :
1212 docker-build :
13- runs-on : [self-hosted, Linux, X64]
13+ runs-on : ubuntu-latest
1414 steps :
1515 - name : Checkout repository
1616 uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ concurrency:
1919
2020jobs :
2121 Lint :
22- runs-on : [self-hosted, Linux, X64]
22+ runs-on : ubuntu-latest
2323 steps :
2424 - name : Checkout repository
2525 uses : actions/checkout@v4
5555 run : make lint
5656
5757 Test :
58- runs-on : [self-hosted, Linux, X64]
58+ runs-on : ubuntu-latest
5959 steps :
6060 - name : Checkout repository
6161 uses : actions/checkout@v4
8282 key : venv-${{ runner.os }}-python-3.13-${{ hashFiles('**/poetry.lock') }}
8383
8484 - name : Install dependencies
85- run : |
86- poetry config virtualenvs.in-project true
87- poetry install --with dev
85+ run : |
86+ poetry config virtualenvs.in-project true
87+ poetry install --with dev
8888 if : steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
8989
9090 - name : Run tests
You can’t perform that action at this time.
0 commit comments