Update README about python aliases #79
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
name: CI Check | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Setup Python | |
uses: actions/setup-python@v5.0.0 | |
with: | |
python-version: "3.11.x" | |
- name: Setup Node | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: 20.x | |
- name: Install uv | |
run: python3 -m pip install uv | |
- name: Install Python requirements | |
run: uv pip install --system -r requirements.txt | |
- name: Run EL | |
run: python3 el.py -lc | |
- name: Run T and Lint | |
run: | | |
dbt deps | |
dbt build | |
sqlfluff lint models --format github-annotation-native | |
- name: Build Evidence | |
env: | |
EVIDENCE_DATABASE: "duckdb" | |
EVIDENCE_DUCKDB_FILENAME: "octocatalog.db" | |
run: | | |
npm install --prefix ./reports | |
npm run sources --prefix ./reports | |
npm run build --prefix ./reports |