You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/.github/workflows/testing.yml

19 lines
348 B

---
name: Unit Tests
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/library/setup
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Run unit tests
run: pytest