Skip to content

added format option

added format option #3

Workflow file for this run

name: python application test with github actions
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: install dependencies
run: |
make install
- name: lint with pylint
run: |
make lint
- name: test with pytest
run: |
make test
- name: format code
run: |
make format