Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 #345
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
--- | |
name: CI | |
on: | |
push: | |
pull_request: | |
# This ensures that previous jobs for the workflow are canceled when the ref is | |
# updated. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: github/super-linter/slim@v7 | |
env: | |
DEFAULT_BRANCH: dev | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SUPPRESS_POSSUM: true | |
LINTER_RULES_PATH: / | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_DOCKERFILE: false | |
VALIDATE_JSCPD: true | |
FILTER_REGEX_EXCLUDE: (.*/)?(configuration/.*) | |
test: | |
runs-on: ubuntu-latest | |
name: Runs plugin tests | |
needs: run-lint | |
steps: | |
- id: git-checkout | |
name: Checkout | |
uses: actions/checkout@v4 | |
- id: docker-test | |
name: Test the image | |
run: ./test.sh |