whoogle-search/.github/workflows/tests.yml

18 lines
394 B
YAML
Raw Normal View History

name: tests
2021-09-16 00:27:11 +03:00
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
2024-09-30 20:22:42 +03:00
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: pip install --upgrade pip && pip install -r requirements.txt
- name: Run tests
run: ./run test