Skip to content

Configure project setup #6

Configure project setup

Configure project setup #6

Workflow file for this run

name: dbt-score
on:
pull_request:
branches:
- master
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: '3.8'
- name: Install dependencies
run: |
pdm sync -d
- name: Run Tox
run: |
pdm run tox -e py,lint