fix(deps): update module golang.org/x/net to v0.46.0 #234
This file contains hidden or 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: Run tests | |
on: | |
workflow_call: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
env: | |
KUBERNETES_VERSION: "1.32.0" | |
jobs: | |
tests: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
concurrency: | |
group: cloudflare-operator-tests | |
cancel-in-progress: false | |
permissions: | |
contents: read | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v5 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Set up Go | |
uses: actions/setup-go@v6 | |
with: | |
go-version-file: "go.mod" | |
check-latest: true | |
cache: true | |
- name: Set up Kind Cluster | |
run: | | |
make kind | |
- name: Run Unit Tests | |
env: | |
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | |
CF_ZONE_ID: ${{ secrets.CF_ZONE_ID }} | |
run: | | |
make test | |
- name: Run E2E Tests | |
env: | |
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | |
run: | | |
make test-e2e | |
- name: Cleanup Cloudflare DNS Records | |
if: always() | |
env: | |
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | |
CF_ZONE_ID: ${{ secrets.CF_ZONE_ID }} | |
run: | | |
make clean-test-dns-records |