Skip to content

🌱 Bump golang.org/x/tools from 0.43.0 to 0.44.0 #2215

🌱 Bump golang.org/x/tools from 0.43.0 to 0.44.0

🌱 Bump golang.org/x/tools from 0.43.0 to 0.44.0 #2215

name: Cross-Platform Tests
# Trigger the workflow on pull requests and direct pushes to any branch
on:
push:
paths-ignore:
- '**/*.md'
pull_request:
paths-ignore:
- '**/*.md'
permissions: {}
jobs:
test:
permissions:
contents: read
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
# Pull requests from the same repository won't trigger this checks as they were already triggered by the push
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
steps:
- name: Clone the code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
# This step is needed as the following one tries to remove
# kustomize for each test but has no permission to do so
- name: Remove pre-installed kustomize
run: sudo rm -f /usr/local/bin/kustomize
- name: Unit Tests
run: make test-unit
- name: Run Testdata
run: make test-testdata