Skip to content

Update .gitignore

Update .gitignore #4

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
- name: Run linting
run: hatch run linting:all
- name: Run tests
run: hatch run testing:cov .
- name: Export coverage
run: hatch run testing:coverage html
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: coverage-report
path: src/htmlcov