Skip to content

linting

linting #2

Workflow file for this run

name: pyoes
on: [push, pull_request]
env:
PYTHON_VERSION: "3.11"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '16'
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
python setup.py develop
- name: Run checks and tests
run: |
./check_versions.sh
py.test --cov pyoes --cov-report term-missing
- name: Upload coverage to Coveralls
run: coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}