Skip to content

Introduce GitHub Workflows #1

Introduce GitHub Workflows

Introduce GitHub Workflows #1

Workflow file for this run

name: dbt-score
on:
push:
branches:
- main
paths:
- "*.md"
- docs/**
- .github/workflows/docs.yml
- "src/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v4

Check failure on line 22 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: '3.8'
- name: Install dependencies
run: |
pdm sync -d
- name: Run Tests
run: |
pdm run tox -e py,lint
# - name: Publish docs
# run: |
# TODO
# - name: Publish package
# run: |
# pdm publish --no-build