replace serve by servemultiplex #10
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: Perform units tests | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '^1.19.3' | |
- name: Test config | |
run: go test -v -run TestConfig | |
- name: Test roles | |
run: go test -v -run TestUserRole | |
- name: Test credentials | |
run: VAULT_ACC=1 go test -v -run TestAcceptanceUserCred |