Fix TestProvisioningFactoryReset when running with libfaketime #2376
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
# Run special builds that should be supported | |
name: Builds | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
builds: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# check support for oldest supported golang version | |
- name: go1.22 | |
go-version: "~1.22" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version || '^1.22' }} | |
check-latest: true | |
- run: | | |
go version | |
go build ./coap-gateway/cmd/service |