feature/match #5

Merged
Tritium merged 63 commits from feature/match into main 2024-04-25 21:30:29 +08:00
Showing only changes of commit cb350b6288 - Show all commits

View File

@ -9,14 +9,10 @@ on:
jobs: jobs:
build: build:
runs-on: "ubuntu-latest" runs-on: "ubuntu-latest"
container: python:latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install dependencies - name: Install dependencies
run: | run: pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
python -m pip install --upgrade pip
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
- name: Run tests - name: Run tests
run: | run: python -m unittest discover -s tests
python -m unittest discover -s tests