Skip to content

.github/workflows: add atlas ci workflow #3

.github/workflows: add atlas ci workflow

.github/workflows: add atlas ci workflow #3

Workflow file for this run

name: Atlas
on:
push:
branches:
- master
paths:
- .github/workflows/ci-atlas.yaml
- '/*'
pull_request:
paths:
- '/*'
# Permissions to write comments on the pull request.
permissions:
contents: read
pull-requests: write
jobs:
atlas:
services:
# Spin up a postgres:15 container to be used as the dev-database for analysis.
postgres:
image: postgres:15
env:
POSTGRES_DB: dev
POSTGRES_PASSWORD: pass
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-start-period 10s
--health-timeout 5s
--health-retries 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ariga/setup-atlas@v0
with:
cloud-token: ${{ secrets.ATLAS_CLOUD_TOKEN_NHNTFI }}

Check failure on line 42 in .github/workflows/ci-atlas.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-atlas.yaml

Invalid workflow file

You have an error in your yaml syntax on line 42
- uses: ariga/atlas-action/schema/plan@v1
with:
dir: 'file://'
dir-name: 'app-test'
dev-url: 'postgres://postgres:pass@localhost:5432/dev?search_path=public&sslmode=disable'
env:
GITHUB_TOKEN: ${{ github.token }}
- uses: ariga/atlas-action/schema/push@v1
if: github.ref == 'refs/heads/master'
with:
dir: 'file://'
dir-name: 'app-test'
dev-url: 'postgres://postgres:pass@localhost:5432/dev?search_path=public&sslmode=disable'