Skip to content

Bump pygments from 2.13.0 to 2.15.0 in /requirements (#56) #76

Bump pygments from 2.13.0 to 2.15.0 in /requirements (#56)

Bump pygments from 2.13.0 to 2.15.0 in /requirements (#56) #76

Workflow file for this run

name: CI
on:
push:
branches:
- development
pull_request:
branches:
- development
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
run: make install-ci
- name: Run lint
run: make lint
unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
run: make install-ci
- name: Run unit test
run: make test-unit
integration_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
run: make install-ci
- name: Run integration test
run: make test-integ