Add CI Improvement #215
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E | |
on: | |
push: | |
paths-ignore: | |
- docs/** | |
# schedule: | |
# - cron: 37 10 * * 1-5 # At 10:37 on every day-of-week from Monday through Friday | |
jobs: | |
test-e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- name: Determine Go version from go.mod | |
run: echo "GO_VERSION=$(go mod edit -json | jq -r .Go)" >> $GITHUB_ENV | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Install prerequisites | |
run: make crossplane-setup registry-setup | |
- name: Run tests | |
run: make test-e2e | |
- name: Cleanup | |
run: make clean | |
if: always() |