mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 03:13:15 +00:00
As a part of #1298, I'm going to use Go fuzzing which is availabls since Go 1.18. Co-authored-by: Callum Tait <15716903+toast-gear@users.noreply.github.com>
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- .github/workflows/runners.yml
|
|
- .github/workflows/on-push-lint-charts.yml
|
|
- .github/workflows/on-push-master-publish-chart.yml
|
|
- .github/workflows/release.yml
|
|
- .github/workflows/test-entrypoint.yml
|
|
- .github/workflows/wip.yml
|
|
- 'runner/**'
|
|
- '**.md'
|
|
- '.gitignore'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: Test
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
|
- uses: actions/setup-go@193b404f8a1d1dccaf6ed9bf03cdb68d2d02020f
|
|
with:
|
|
go-version: '1.18.2'
|
|
check-latest: false
|
|
- run: go version
|
|
- uses: actions/cache@95f200e41cfa87b8e07f30196c0df17a67e67786
|
|
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
|