ci: release-please still does not use the correct start commit #537
Workflow file for this run
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: Run tests | |
on: [ pull_request ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.19' | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Verify manifests are up to date | |
run: | | |
kustomize build deploy/kubernetes > /tmp/hcloud-csi.yml | |
# Workaround for kustomize stripping all comments. This comment is | |
# needed to automatically bump the referenced container tag through | |
# release-please | |
sed -i '/hetznercloud\/hcloud-csi-driver/ s/$/ # x-release-please-version/' /tmp/hcloud-csi.yml | |
diff deploy/kubernetes/hcloud-csi.yml /tmp/hcloud-csi.yml | |
- name: Run tests | |
run: | | |
go vet ./... | |
go test $(go list ./... | grep -v e2e) -v |