mirror of
https://github.com/daylinmorgan/swydd.git
synced 2025-02-23 12:55:50 -06:00
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from 3 to 5. - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v3...v5) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
456 B
YAML
30 lines
456 B
YAML
name: Run Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
|
|
- name: Set up Python
|
|
run: uv python install
|
|
|
|
- name: Install the project
|
|
run: uv sync
|
|
|
|
- name: run tests
|
|
run: ./tasks.py tests
|
|
|