Skip to content

refactor: support position and param meta info #78

refactor: support position and param meta info

refactor: support position and param meta info #78

Workflow file for this run

name: Run Tests
on:
push:
branches:
- refactoring-v3-mvp
pull_request:
branches:
- refactoring-v3-mvp
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker
uses: docker/setup-docker-action@v4
- name: Build Docker image
run: |
docker build -t test-image .
- name: Run tests in Docker
run: |
docker run test-image sh -c "python -m pip install pytest && python -m pytest -v"