Skip to content

modified static files, updated code.html and main.py (#127) #186

modified static files, updated code.html and main.py (#127)

modified static files, updated code.html and main.py (#127) #186

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
include:
- name: Tests
command: bin/tests
- name: Lint
command: bin/lint
runs-on: ubuntu-latest
name: ${{ matrix.name }}
steps:
- name: Check out repository
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version-file: '.python-version'
cache: 'pip'
cache-dependency-path: |
requirements.txt
requirements/*.txt
- name: Install Python dependencies
run: |
pip install -U pip setuptools wheel
pip install -r requirements.txt --no-deps
pip install -r requirements/dev.txt
- name: Run ${{ matrix.name }}
run: ${{ matrix.command }}