Skip to content

remove forcing adding dlt load id #11

remove forcing adding dlt load id

remove forcing adding dlt load id #11

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install Microsoft ODBC
run: sudo ACCEPT_EULA=Y apt-get install msodbcsql18 -y
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Cache dependencies
uses: actions/cache@v3
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}
- name: Install pip dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: make deps-ci
- name: run tests
run: make test-ci
- name: check the formatting
run: make lint-ci