Update centrally managed files #215
Workflow file for this run
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
# This is a template `pr.yaml` file for snaps | |
# This file is managed by bootstack-charms-spec and should not be modified | |
# within individual snap repos. https://launchpad.net/bootstack-charms-spec | |
name: PR workflow running lint checkers, unit and functional tests | |
on: | |
workflow_dispatch: | |
workflow_call: | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
branches: [ master, main , '[0-9].[0-9]+', '[0-9]+'] | |
paths-ignore: | |
- '**.md' | |
- '**.rst' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pr: | |
uses: canonical/bootstack-actions/.github/workflows/pull-request.yaml@main | |
secrets: inherit | |
with: | |
python-version-unit: "['3.8', '3.10']" | |
python-version-func: "3.10" | |
juju-channel: "3.4/stable" | |
snapcraft: true | |
commands: "['make functional']" |