Skip to content

Merge pull request #7 from RyoJerryYu/feat-update-multi-for-plugins #31

Merge pull request #7 from RyoJerryYu/feat-update-multi-for-plugins

Merge pull request #7 from RyoJerryYu/feat-update-multi-for-plugins #31

Workflow file for this run

name: build-and-push-test-image
on:
push:
branches: ["master"]
pull_request:
branches: ["**"]
workflow_dispatch:
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests
run: make test