This repository was archived by the owner on Oct 2, 2024. It is now read-only.
New Machine Learning Model Extension Version 2.0.alpha schema and (de)serialization, validation package #31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# UPDATEME to suit your project's workflow | |
name: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2.2.2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
run: make poetry-install | |
- name: Set up cache | |
uses: actions/cache@v2.1.6 | |
with: | |
path: .venv | |
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }} | |
- name: Install dependencies | |
run: make install-dev | |
- name: Run style checks | |
run: | | |
make lint | |
- name: Run tests | |
run: | | |
make test | |
- name: Run safety checks | |
run: | | |
make check-safety |