merge with cocotb_utils #15
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: Lint | |
on: | |
push: | |
branches-ignore: ["gh-pages"] | |
pull_request: | |
jobs: | |
run: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Assert PR target is main | |
if: github.event_name == 'pull_request' && github.repository == 'hpmm/cocotb-wrapper' | |
run: | | |
if [ "$GITHUB_BASE_REF" != "main" ]; then | |
echo "::error::PR targeting '$GITHUB_BASE_REF', please refile targeting 'main'." && exit 1 | |
fi | |
- name: Set up latest Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade poetry | |
poetry install --with dev | |
- name: Run pre-commit hooks | |
uses: pre-commit/[email protected] |