GHA: Limit artifact upload to .ex[45] files only #195
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 | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
push: | |
jobs: | |
Pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit|${{ hashFiles('.pre-commit-config.yaml') }} | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- uses: pre-commit/[email protected] |