Unit Tests #1484
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
# **what?** | |
# Runs unit tests on all code commited to the repository. This workflow | |
# should not require any secrets since it runs for PRs from forked repos. By | |
# default, secrets are not passed to workflows running from a forked repos. | |
# **why?** | |
# Ensure code for dbt meets a certain quality standard. | |
# **when?** | |
# This will run for all PRs, when code is pushed to main, and when manually triggered. | |
name: Unit Tests | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
merge_group: | |
types: [checks_requested] | |
workflow_dispatch: | |
workflow_call: | |
permissions: read-all | |
# will cancel previous workflows triggered by the same event and for the same ref for PRs or same SHA otherwise | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.ref || github.sha }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
unit: | |
name: "Run tests / python ${{ matrix.python-version }}" | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: "Check out the repository" | |
uses: actions/checkout@v4 | |
- name: "Set up Python & Hatch - ${{ matrix.python-version }}" | |
uses: ./.github/actions/setup-python-hatch | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: "Run Tests" | |
run: hatch run test:unit | |
- name: "Get current date" | |
if: always() | |
id: date | |
run: | | |
CURRENT_DATE=$(date +'%Y-%m-%dT%H_%M_%S') # no colons allowed for artifacts | |
echo "date=$CURRENT_DATE" >> $GITHUB_OUTPUT | |
- name: Upload Unit Test Coverage to Codecov | |
if: ${{ matrix.python-version == '3.11' }} | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: unit |