chore(deps): update dependency boto3 to v1.28.63 (#774) #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://atlasgo.io/integrations/github-actions | |
name: atlas-ci | |
on: | |
# Run whenever code is changed in the master branch, | |
# change this to your root branch. | |
push: | |
branches: | |
- main | |
# Run on PRs where something changed under the `path/to/migration/dir/` directory. | |
pull_request: | |
paths: | |
- 'atlas/migrations/*' | |
jobs: | |
lint: | |
services: | |
# Spin up a postgres:10 container to be used as the dev-database for analysis. | |
postgres10: | |
image: postgres:16 | |
env: | |
POSTGRES_DB: test | |
POSTGRES_PASSWORD: pass | |
ports: | |
- 5430:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 # Mandatory unless "latest" is set below. | |
- uses: ariga/atlas-action@v1 | |
with: | |
dir: atlas/migrations | |
dir-format: atlas # Or: golang-migrate, liquibase, flyway, goose, dbmate | |
dev-url: postgres://postgres:pass@localhost:5430/test?sslmode=disable |