Support for local SMS server for lab testing #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: | |
pull_request: | |
branches: [ main, dev ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v1 | |
with: | |
version: latest | |
python-version: '3.11' | |
- name: Set up Docker | |
uses: docker/setup-buildx-action@v3 | |
- name: Ensure Docker and Docker Compose is installed | |
run: | | |
docker --version | |
docker compose --version | |
- name: Run tests | |
run: make tests |