Remove wrong dependency. (#28) #2
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: Upload and Release Charm | |
on: | |
push: | |
branches: [main] | |
concurrency: | |
group: release-to-edge | |
cancel-in-progress: true | |
jobs: | |
check-code-quality: | |
name: Run charm code quality checks | |
uses: ./.github/workflows/_quality_check.yaml | |
secrets: inherit | |
with: | |
tox-version: "" | |
python-version: "3.10" | |
juju-channel: "3.1/stable" | |
release-to-edge: | |
needs: [check-code-quality] | |
name: Release charm to latest/edge channel | |
uses: ./.github/workflows/_release.yaml | |
secrets: inherit | |
with: | |
channel: "latest/edge" |