Update issue templates #1
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: Receive PR | |
# read-only repo token | |
# no access to secrets | |
on: | |
pull_request: | |
# Sequence of patterns matched against refs/heads | |
branches: | |
- feature/** | |
- issue/** | |
- issues/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install Poetry | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.3.2 | |
- name: Install ncompare | |
run: poetry install | |
- name: Lint | |
run: | | |
poetry run ruff ncompare | |
- name: Test with pytest | |
run: | | |
poetry run pytest |