Files
drb-client-discord-bot/.gitea/workflows/test.yml
Logan Cusano 57e93eaa81
Some checks failed
Test / test (pull_request) Failing after 56s
Lint / lint (pull_request) Failing after 47s
Fix actions
- Fix branch names
- Update PRs to run on any branch
2025-02-22 22:31:39 -05:00

30 lines
460 B
YAML

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run tests
run: |
pytest