Skip to content

[POP-7487] Add materialize adapter for dbt 1.0+ #63

[POP-7487] Add materialize adapter for dbt 1.0+

[POP-7487] Add materialize adapter for dbt 1.0+ #63

Workflow file for this run

name: ci
on: ['push', 'pull_request']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Check pyproject.toml
run: |
versions=($(ls -1A .))
for version in "${versions[@]}"; do
pushd "${version}"
poetry check
popd
done
working-directory: ./requirements
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master