Skip to content

Commit

Permalink
ci: run validation on NRK runners
Browse files Browse the repository at this point in the history
  • Loading branch information
sjurtf committed Feb 19, 2024
1 parent 8978e02 commit aaf5983
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: # yamllint disable-line rule:truthy
- master
jobs:
lint:
runs-on: ubuntu-latest
runs-on: "['self-hosted', 'linux']"
steps:
- uses: actions/checkout@v4
- name: Setup Python
Expand All @@ -33,7 +33,7 @@ jobs:
yamllint --format github --strict \
device-types/ module-types/
format:
runs-on: ubuntu-latest
runs-on: "['self-hosted', 'linux']"
steps:
- uses: actions/checkout@v4
- name: Setup Python
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Format YAML files (yamlfmt)
run: pre-commit run --config .pre-commit-yamlfmt-config.yaml --all-files
test:
runs-on: ubuntu-latest
runs-on: "['self-hosted', 'linux']"
needs: [lint, format]
permissions:
pull-requests: write
Expand Down

0 comments on commit aaf5983

Please sign in to comment.