Skip to content

Change archive format from .zip to .tar.gz and change artifact na… #17

Change archive format from .zip to .tar.gz and change artifact na…

Change archive format from .zip to .tar.gz and change artifact na… #17

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout angle-builder
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install angle-builder
run: pip install ".[dev]"
- name: Run PEP8 check
run: |
pip install flake8
flake8 src tests
- name: Run tests
run: python -m pytest tests