Update canonical/charming-actions action to v2.6.3 #300
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
# Copyright 2022 Canonical Ltd. | |
# See LICENSE file for licensing details. | |
name: Check libs | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
paths-ignore: | |
- '.gitignore' | |
- '.jujuignore' | |
- 'LICENSE' | |
- '**.md' | |
- 'renovate.json' | |
jobs: | |
lib-check: | |
name: Check libraries | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
if: ${{ github.event.pull_request.head.repo.full_name == 'canonical/postgresql-test-app' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up environment | |
run: | | |
pipx install tox | |
pipx install poetry | |
pipx inject poetry poetry-plugin-export | |
# TODO: Remove after https://github.com/python-poetry/poetry/pull/5980 is closed | |
poetry config warnings.export false | |
- name: Generate requirements | |
run: | | |
tox run -e build-wrapper | |
mv requirements-last-build.txt requirements.txt | |
- name: Check libs | |
uses: canonical/charming-actions/[email protected] | |
with: | |
credentials: "${{ secrets.CHARMHUB_TOKEN }}" | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |