Skip to content

Point to latest adam_core #66

Point to latest adam_core

Point to latest adam_core #66

Workflow file for this run

name: Lint and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-lint-test:
runs-on: ubuntu-latest
env:
IMAGE_TAG: ${{ github.sha }}
steps:
- name: Checkout git repo
uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip"
- name: Install python dependencies
run: pip install -r requirements.txt
- name: Install lint dependencies
run: pre-commit install
- name: Run linters
run: pre-commit run --all-files
- name: Run tests
run: pytest .