Skip to content

GitHub Actions maintenance #147

GitHub Actions maintenance

GitHub Actions maintenance #147

Workflow file for this run

name: Build
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt --no-deps
- name: Run linter
run: pylint -E oec
- name: Run unit tests
run: ./run_unit_tests.sh