Skip to content

Merge pull request #36 from stanfordio/dependabot/pip/certifi-2024.7.4 #165

Merge pull request #36 from stanfordio/dependabot/pip/certifi-2024.7.4

Merge pull request #36 from stanfordio/dependabot/pip/certifi-2024.7.4 #165

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Poetry
uses: snok/[email protected]
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Lint codebase
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_PYTHON_MYPY: false
VALIDATE_PYTHON_ISORT: false # covered mostly by pylint
VALIDATE_NATURAL_LANGUAGE: false # pedantic and unhelpful
- name: Install Dependencies
run: poetry install
- name: Test with pytest
run: poetry run pytest