Skip to content

Add migration tests

Add migration tests #5

Workflow file for this run

name: Pull request
on:
- pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: ttl.sh
env:
GITHUB_USER: automated-${{ github.run_id }}
run: make build-ttl.sh
e2e:
runs-on: ubuntu-latest
needs:
- build
strategy:
fail-fast: false
matrix:
test:
- s3-to-rqlite
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/e2e
secrets: inherit

Check failure on line 32 in .github/workflows/pull-request.yaml

View workflow run for this annotation

GitHub Actions / Pull request

Invalid workflow file

The workflow is not valid. .github/workflows/pull-request.yaml (Line: 32, Col: 7): Unexpected value 'secrets'
with:
test-name: ${{ matrix.test }}