Skip to content

Commit

Permalink
Refactor GitHub Actions workflow for cross-platform compatibility and…
Browse files Browse the repository at this point in the history
… add Go 1.18 test
  • Loading branch information
arvvoid committed Sep 25, 2024
1 parent a286e6c commit 09249f6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,25 @@ jobs:
- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...

go118:
runs-on: ubuntu-latest
env:
CIS_P12_BASE64: ${{ secrets.CIS_P12_BASE64 }}
FISKALHRGO_TEST_CERT_PASSWORD: ${{ secrets.FISKALHRGO_TEST_CERT_PASSWORD }}
FISKALHRGO_TEST_CERT_OIB: ${{ secrets.FISKALHRGO_TEST_CERT_OIB }}
steps:
- uses: actions/checkout@v4

- name: Set up Go 1.18
uses: actions/setup-go@v4
with:
go-version: '1.18'

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...

0 comments on commit 09249f6

Please sign in to comment.