Skip to content

chore: auto add data 2024-04-30 #9

chore: auto add data 2024-04-30

chore: auto add data 2024-04-30 #9

Workflow file for this run

name: UnitTest
on:
push:
branches:
- "**" # matches every branch
tags:
- "v**"
jobs:
test:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: "pip"
- name: Install dependencies
run: python -m pip install --upgrade pip setuptools && python -m pip install -r requirements.txt
- name: Run test
run: pytest