fix: TOOLS-2622 correctly parse asconf non humanized uint (#14) #92
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: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "^1.19.0" | |
- name: Install dependencies | |
run: | | |
make dependencies | |
- name: Write feature keys | |
run: | | |
echo "$FEATURESV1" > /tmp/featuresv1.conf | |
echo "$FEATURESV2" > /tmp/featuresv2.conf | |
env: | |
FEATURESV1 : ${{secrets.FEATURES_V1}} | |
FEATURESV2 : ${{secrets.FEATURES_V2}} | |
- name: Run tests | |
run: | | |
make coverage | |
env: | |
FEATKEY : /tmp |