Skip to content

chore(deps): pin actions/checkout action to v7.0.1 (#25) #104

chore(deps): pin actions/checkout action to v7.0.1 (#25)

chore(deps): pin actions/checkout action to v7.0.1 (#25) #104

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
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: Integration tests
env:
MAC2NIX_BASE_VM: macos-tahoe-base
run: make test-integration