Skip to content

Ported SQL Backend framework from https://github.com/databrickslabs/u… #5

Ported SQL Backend framework from https://github.com/databrickslabs/u…

Ported SQL Backend framework from https://github.com/databrickslabs/u… #5

Workflow file for this run

name: build
on:
pull_request:
types: [opened, synchronize]
merge_group:
types: [checks_requested]
push:
# Always run on push to main. The build cache can only be reused
# if it was saved by a run from the repository's default branch.
# The run result will be identical to that from the merge queue
# because the commit is identical, yet we need to perform it to
# seed the build cache.
branches:
- main
env:
HATCH_VERSION: 1.7.0
jobs:
ci:
strategy:
matrix:
pyVersion: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
python-version: ${{ matrix.pyVersion }}
- name: Install hatch
run: pip install hatch==$HATCH_VERSION
- name: Run unit tests
run: hatch run unit:test
- name: Publish test coverage
uses: codecov/codecov-action@v1
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
python-version: 3.10.x
- name: Install hatch
run: pip install hatch==$HATCH_VERSION
- name: Verify linting
run: hatch run lint:verify