Skip to content

Merge pull request #13 from NETWAYS/refactor/update-2023 #13

Merge pull request #13 from NETWAYS/refactor/update-2023

Merge pull request #13 from NETWAYS/refactor/update-2023 #13

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
gitHubActionForPytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
name: GitHub Action
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install -r requirements-dev.txt
- name: Lint
run: |
make lint
- name: Unittest
run: |
make coverage