Update to account for dependent collection updates #97
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: Validation CI | |
"on": | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- assigned | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
- ready_for_review | |
- review_requested | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install requirements | |
run: sudo pip3 install pre-commit | |
- name: Run pre-commit tests | |
run: pre-commit run -v --all-files |