Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Merge branch 'update-main' of github.com:synccomputingcode/databricks… #23

Merge branch 'update-main' of github.com:synccomputingcode/databricks…

Merge branch 'update-main' of github.com:synccomputingcode/databricks… #23

Workflow file for this run

name: build

Check failure on line 1 in .github/workflows/push.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/push.yml

Invalid workflow file

Cannot define both `uses` and `steps` at the same time for the following jobs: tests-ubuntu
on:
pull_request:
types: [ opened, synchronize ]
merge_group:
types: [ checks_requested ]
push:
branches:
- main
jobs:
tests-ubuntu:
uses: ./.github/workflows/test.yml
strategy:
fail-fast: false
matrix:
pyVersion: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Unshallow
run: git fetch --prune --unshallow
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.pyVersion }}
- name: Run tests
run: make dev install test
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Format all files
run: make dev fmt
- name: Fail on differences
run: git diff --exit-code