Skip to content

chore: Configure Renovate #52

chore: Configure Renovate

chore: Configure Renovate #52

Workflow file for this run

name: PR Checks
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
lint-and-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: astral-sh/setup-uv@e58605a9b6da7c637471fab8847a5e5a6b8df081 # v5
with:
python-version: "3.13"
- name: Install dependencies
run: make install
- name: Lint
run: make lint
- name: Type check
run: make typecheck
- name: Test
run: make test
integration:
needs: lint-and-test
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: macos-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: astral-sh/setup-uv@e58605a9b6da7c637471fab8847a5e5a6b8df081 # v5
with:
python-version: "3.13"
- name: Install dependencies
run: make install
- name: Install tart
run: brew install cirruslabs/cli/tart
- name: Install sshpass
run: |
brew tap hudochenkov/sshpass
brew install sshpass
- name: Pull base VM image
run: tart pull ghcr.io/cirruslabs/macos-sequoia-base@sha256:6d2fcc3b4f669e5fec2c567bd991cfb14b527532a288177ce29fc7eb1ee575c2 # latest
- name: Integration tests
env:
MAC2NIX_BASE_VM: macos-sequoia-base
run: make test-integration