Skip to content

Request format (#2)

Request format (#2) #4

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
paths-ignore:
- "**.md"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install
- name: Test
run: make install-vedro-replay lint unit e2e