Fix data generation batch sizes #480
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
python-version: "3.11" | |
poetry-version: "1.8.3" | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ env.python-version }} | |
- name: Install Poetry | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: ${{ env.poetry-version }} | |
- name: Install Dependencies | |
run: poetry install | |
- name: Unit Tests | |
run: poetry run poe test_unit | |
- name: Smoke Tests | |
run: poetry run poe test_smoke | |