Skip to content

Update TERMS.md

Update TERMS.md #531

Workflow file for this run

---
name: Run Tests
on:
push:
pull_request:
branches:
- main
jobs:
run-lint-and-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- uses: actions/checkout@v4
- name: Install Poetry
run: pip install poetry
- name: Cache Python dependencies
uses: actions/cache@v3
with:
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
${{ runner.os }}-poetry-
path: |
~/.cache/pypoetry
- name: Install Python dependencies
run: poetry install
- name: Lint
run: poetry run make lint
- name: Test
run: poetry run make test