rename ci to audit. #9
Workflow file for this run
This file contains hidden or 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: ci | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
cache: 'pip' | |
- name: upgrade pip | |
run: python -m pip install --upgrade pip | |
- name: install dependencies | |
run: pip install -r requirements.txt -e . | |
- name: run lint | |
run: ruff check | |
- name: run tests | |
run: pytest |