Skip to content

chore: bump release-drafter/release-drafter from a6a982fee9675c45c1765e9fa5308f7d6c3ecbd4 to 5de93583980a40bd78603b6dfdcda5b4df377b32 #178

chore: bump release-drafter/release-drafter from a6a982fee9675c45c1765e9fa5308f7d6c3ecbd4 to 5de93583980a40bd78603b6dfdcda5b4df377b32

chore: bump release-drafter/release-drafter from a6a982fee9675c45c1765e9fa5308f7d6c3ecbd4 to 5de93583980a40bd78603b6dfdcda5b4df377b32 #178

Workflow file for this run

name: Compatibility Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
compat:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Install SQLite dev headers
run: sudo apt-get install -y libsqlite3-dev
- name: Build devcloud binary
run: CGO_ENABLED=1 go build -o dist/devcloud ./cmd/devcloud
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Python dependencies
run: pip install -r tests/compatibility/requirements.txt
- name: Run compatibility tests
run: pytest tests/compatibility/ -v --tb=short
env:
DEVCLOUD_BIN: dist/devcloud