Skip to content

fix(ci): Remove private GHA mechanisms #7

fix(ci): Remove private GHA mechanisms

fix(ci): Remove private GHA mechanisms #7

Workflow file for this run

name: test
on:
pull_request: {}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: make venv
shell: bash
- run: make lint
shell: bash
- run: make test
shell: bash
- run: make build
shell: bash