74 lines
2.2 KiB
YAML
74 lines
2.2 KiB
YAML
name: Test And Release
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test:
|
|
name: Run Tests / OS ${{ matrix.os }} / Python ${{ matrix.python-version }}
|
|
strategy:
|
|
matrix:
|
|
os: [ ubuntu-latest ]
|
|
python-version: ["3.11", "3.12", "3.13"]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
with:
|
|
enable-cache: true
|
|
- name: Install brew
|
|
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
|
|
- name: Install Supabase
|
|
run: |
|
|
echo >> /home/runner/.bashrc
|
|
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/runner/.bashrc
|
|
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
|
HOMEBREW_NO_INSTALL_CLEANUP=1
|
|
brew install supabase/tap/supabase
|
|
bash scripts/update-env.sh
|
|
uv python install ${{ matrix.python-version }}
|
|
cd backend
|
|
uv sync --python ${{ matrix.python-version }} --all-extras --dev
|
|
uv run bash scripts/pre-start.sh
|
|
uv run bash scripts/tests-start.sh
|
|
|
|
release:
|
|
name: Bump Version and Release
|
|
needs: test
|
|
runs-on: ubuntu-latest
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
with:
|
|
enable-cache: true
|
|
|
|
- name: Install dependencies
|
|
run: uv sync --dev
|
|
|
|
- name: Generate a changelog
|
|
env:
|
|
ATTICUS_PAT: ${{ secrets.ATTICUS_PAT }}
|
|
run: uv run git-cliff -vv --latest --strip header --github-token "$ATTICUS_PAT" -o CHANGES.md
|
|
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
body_path: CHANGES.md
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# Reference
|
|
# 1. https://docs.astral.sh/uv/guides/integration/github/#syncing-and-running
|
|
# 2. https://github.com/Kludex/python-template/blob/main/.github/workflows/main.yml
|
|
# 3. https://github.com/softprops/action-gh-release/tree/master/
|