pdk update 3.0.0, add Ubuntu 22.04 support, bump module and Puppet versions, drop Puppet 6 support, fix puppet-lint complaints #86
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
validate_and_unit_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/install-pdk | |
- run: pdk validate --parallel | |
- run: pdk test unit --parallel | |
acceptance_bind_spec: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/install-pdk | |
- uses: ./.github/actions/acceptance-test | |
with: | |
filename: bind_spec | |
acceptance_bind_backport_spec: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/install-pdk | |
- uses: ./.github/actions/acceptance-test | |
with: | |
filename: bind_backport_spec | |
acceptance_bind_resolvconf_service_spec: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/install-pdk | |
- uses: ./.github/actions/acceptance-test | |
with: | |
filename: bind_resolvconf_service_spec | |
acceptance_bind_authoritative_spec: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/install-pdk | |
- uses: ./.github/actions/acceptance-test | |
with: | |
filename: bind_authoritative_spec |