Skip to content

build(deps): Bump actions/checkout from 6 to 7 #678

build(deps): Bump actions/checkout from 6 to 7

build(deps): Bump actions/checkout from 6 to 7 #678

name: check-test-integration
permissions:
contents: read
issues: read
checks: write
pull-requests: write
on:
push:
pull_request:
workflow_dispatch:
inputs:
ref:
description: "The ref (branch or SHA) to process"
required: false
type: string
concurrency:
group: global-singleton-integration
cancel-in-progress: false
defaults:
run:
shell: bash -xe {0}
jobs:
integration-test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
with:
ref: ${{ github.event.inputs.ref }} # Use the ref if provided, otherwise defaults to the current branch/commit
- uses: nixbuild/nix-quick-install-action@v34
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
nix_conf: |
extra-substituters = https://obeli-sk.cachix.org
extra-trusted-public-keys = obeli-sk.cachix.org-1:31iM9GWSEhAXvvuTWQ7CvAcwvgRzsuJ9yJghywSd3Jw=
- name: Populate the nix store
run: |
nix develop --command echo
- name: Run integration tests
env:
CI: true
TEST_GITHUB_TOKEN_STARGAZERS: ${{ secrets.TEST_GITHUB_TOKEN }}
TEST_GITHUB_LOGIN: ${{ secrets.TEST_GITHUB_LOGIN }}
TEST_GITHUB_REPO: ${{ secrets.TEST_GITHUB_REPO }}
TEST_TURSO_TOKEN: ${{ secrets.TEST_TURSO_TOKEN }}
TEST_TURSO_LOCATION: ${{ secrets.TEST_TURSO_LOCATION }}
run: nix develop --command ./scripts/test-integration.sh