Skip to content

Bump release to 1.11.0, in preparation for release (#204) #1413

Bump release to 1.11.0, in preparation for release (#204)

Bump release to 1.11.0, in preparation for release (#204) #1413

Workflow file for this run

# **what?**
# Verifies python build 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: "Build"
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:
build:
# TODO: blocked on https:/dbt-labs/dbt-adapter/issues/3
name: build packages
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: "Set up Python & Hatch - 3.11"
uses: ./.github/actions/setup-python-hatch
with:
python-version: "3.11"
- name: "Build Python Package"
run: |
hatch build
- name: "Check build"
run: hatch run build:check-all