Skip to content

chore: upgrade Go from 1.24.3 to 1.24.4 (#71) #210

chore: upgrade Go from 1.24.3 to 1.24.4 (#71)

chore: upgrade Go from 1.24.3 to 1.24.4 (#71) #210

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: "go.mod"
- name: Build
run: make build
- name: Run unit-tests
run: make test
- name: Run acceptance tests
env:
UPCLOUD_USERNAME: ${{ secrets.UPCLOUD_API_USER }}
UPCLOUD_PASSWORD: ${{ secrets.UPCLOUD_API_PASSWORD }}
PACKER_ACC: 1
run: make test_integration