Skip to content

Commit

Permalink
fix(#204): maybe fix action build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jumpy-Squirrel committed Feb 27, 2024
1 parent be0bdb0 commit 64b4ad0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: .

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: '^1.20.4'
go-version: '^1.22.0'

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

- name: Test with Coverage
run: go test -v -coverpkg=./internal/... ./...
- name: Test
run: go test -v ./...
working-directory: .
3 changes: 2 additions & 1 deletion docs/config-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ choices:
vat_percent: 19
visible_for:
- regdesk
default: true
default: false
read_only: true
constraint: '!day-wed,!day-thu,!day-fri,!day-sat'
constraint_msg: 'Early Bird Discount does not apply to Day Tickets'
Expand All @@ -164,6 +164,7 @@ choices:
vat_percent: 19
visible_for:
- regdesk
default: false
read_only: true
constraint: '!day-wed,!day-thu,!day-fri,!day-sat'
constraint_msg: 'Late Fee does not apply to Day Tickets'
Expand Down

0 comments on commit 64b4ad0

Please sign in to comment.