Skip to content

updated access_list schema #19

updated access_list schema

updated access_list schema #19

Workflow file for this run

name: Pytest PR
on:
pull_request:
branches:
- main
jobs:
run-test-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Test with pytest
env:
KLAYTN_ETL_RUN_SLOW_TESTS: True
run: |
pytest