Skip to content

bumps

bumps #98

Workflow file for this run

name: Test
on:
pull_request:
branches: [ "master" ]
concurrency: test_action_group
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Edit config
env:
CONFIG_JSON: ${{ secrets.CONFIG_JSON }}
run: |
cd testdata/simply-dns-webhook
echo $CONFIG_JSON > config.json
cd ../..
- name: Run tests
env:
TEST_ZONE_NAME: ${{ secrets.TEST_ZONE_NAME }}
run: |
make test
- name: Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}