Skip to content

Create Data-Seedling #1

Create Data-Seedling

Create Data-Seedling #1

Workflow file for this run

---
name: PR Checks
on:
pull_request:
jobs:
lint:
name: Validate
runs-on: ubuntu-latest
concurrency:
group: "${{ github.workflow }}-${{ github.head_ref }}-validate"
cancel-in-progress: true
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: make install-test install-lint
- name: Pre-commit linting
uses: pre-commit/[email protected]
- name: Run tests
env:
COGNITIVE_KEYS: ${{ secrets.COGNITIVE_KEYS }}
run: make test
- name: Build artifacts
run: make artifacts