mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 11:41:27 +00:00
* ci: align pipeline files and setups * ci: more changes * ci: various changes * ci: fix setup-helm action ref * ci: better pipeline name * ci: more format aligning * ci: more format aligning * ci: better job name * ci: supports multiple languages * ci: better pipeline and job names * ci: do a verb-noun thing for consistency * ci: use 'arc' when talking holistically * ci: add caching scope * ci: put canary in a scope * ci: fix syntax error * ci: better pipeline and job names * ci: better job name Co-authored-by: toast-gear <toast-gear@users.noreply.github.com>
61 lines
1.5 KiB
YAML
61 lines
1.5 KiB
YAML
name: Validate ARC
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '.github/ISSUE_TEMPLATE/**'
|
|
- '.github/workflows/publish-canary.yaml'
|
|
- '.github/workflows/validate-chart.yaml'
|
|
- '.github/workflows/publish-chart.yaml'
|
|
- '.github/workflows/runners.yaml'
|
|
- '.github/workflows/publish-arc.yaml'
|
|
- '.github/workflows/validate-entrypoint.yaml'
|
|
- '.github/renovate.*'
|
|
- 'runner/**'
|
|
- '.gitignore'
|
|
- 'PROJECT'
|
|
- 'LICENSE'
|
|
- 'Makefile'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test-controller:
|
|
name: Test ARC
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set-up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.18.2'
|
|
check-latest: false
|
|
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Install kubebuilder
|
|
run: |
|
|
curl -L -O https://github.com/kubernetes-sigs/kubebuilder/releases/download/v2.3.2/kubebuilder_2.3.2_linux_amd64.tar.gz
|
|
tar zxvf kubebuilder_2.3.2_linux_amd64.tar.gz
|
|
sudo mv kubebuilder_2.3.2_linux_amd64 /usr/local/kubebuilder
|
|
|
|
- name: Run tests
|
|
run: |
|
|
make test
|
|
|
|
- name: Verify manifests are up-to-date
|
|
run: |
|
|
make manifests
|
|
git diff --exit-code
|