mirror of
https://github.com/oatpp/oatpp-postgresql.git
synced 2024-11-21 01:05:09 +08:00
36de2e4843
Version two of the Docker Compose is invoked via docker compose Removed hyphen from docker-compose
21 lines
532 B
YAML
21 lines
532 B
YAML
# Starter pipeline
|
|
# Start with a minimal pipeline that you can customize to build and deploy your code.
|
|
# Add steps that build, run tests, deploy, and more:
|
|
# https://aka.ms/yaml
|
|
|
|
jobs:
|
|
- job: ubuntu_20_04
|
|
displayName: 'Build - Ubuntu 20.04'
|
|
continueOnError: false
|
|
pool:
|
|
vmImage: 'ubuntu-20.04'
|
|
workspace:
|
|
clean: all
|
|
steps:
|
|
- script: |
|
|
docker compose build
|
|
displayName: 'Compose build'
|
|
- script: |
|
|
docker compose run test
|
|
displayName: 'Compose run'
|