Skip to content

Add github actions.

Add github actions. #2

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
build:

Check failure on line 4 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
steps:
- uses: actions/checkout@v2
- name: Set up Python all python version
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: pip install -r ./back/dependencies/requirements.txt
- name: Run Test
run: python -m unittest discover -s ./back/ -v