Update Terraform juju to ~> 0.10.0 #62
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: Check Charm Libs on Pull Request | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- server/** | |
jobs: | |
build: | |
name: Check charm libraries | |
runs-on: [self-hosted, linux, X64] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Check libraries | |
uses: canonical/charming-actions/[email protected] | |
with: | |
charm-path: server/charm | |
credentials: "${{ secrets.CHARMHUB_TOKEN }}" | |
github-token: "${{ secrets.GITHUB_TOKEN }}" |