Skip to content

Merge pull request #1 from central-university-dev/app-layer #12

Merge pull request #1 from central-university-dev/app-layer

Merge pull request #1 from central-university-dev/app-layer #12

Workflow file for this run

name: Static Checks
on:
push:
branches:
- '*'
jobs:
style_and_test_check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Configure Poetry
run: |
poetry config virtualenvs.create false
- name: Install dependencies
run: |
make install
- name: Style checking
run: |
make lint
- name: Test checking
run: |
make test