Skip to content

Update issue templates #1

Update issue templates

Update issue templates #1

Workflow file for this run

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