Skip to content

Commit

Permalink
fix(gh-actions): Run on self-hosted, pt2.
Browse files Browse the repository at this point in the history
  • Loading branch information
jochumdev committed Dec 6, 2023
1 parent 7c487dd commit 08c1127
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions: read-all
jobs:
golangci:
name: Lint
runs-on: [self-hosted, ubuntu-latest]
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -20,7 +20,7 @@ jobs:
run: ./scripts/test.sh lint all
test:
name: Unit Tests
runs-on: [self-hosted, ubuntu-latest]
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -33,7 +33,7 @@ jobs:
run: ./scripts/test.sh test all
summary:
name: Summary
runs-on: [self-hosted, ubuntu-latest]
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 08c1127

Please sign in to comment.