Skip to content

Updated README.md

Updated README.md #3

Workflow file for this run

name: Codespaces Python 3.10
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10.12
- name: Install dependencies
run: |
make install
- name: Lint
run: |
make lint
- name: Format
run: |
make format
- name: Test
run: |
make test