Skip to content

Simplify circular-buffer and upgrade to Python 3.12 #37

Simplify circular-buffer and upgrade to Python 3.12

Simplify circular-buffer and upgrade to Python 3.12 #37

Workflow file for this run

name: CI
on: [push, workflow_dispatch]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test
run: ./.github/run.sh --no-lint
- name: Lint
run: ./.github/run.sh --no-test