mirror of
https://github.com/oatpp/oatpp-postgresql.git
synced 2024-11-27 02:39:56 +08:00
fe7b1d525c
* Setup CI
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_16_04
|
|
displayName: 'Build - Ubuntu 16.04'
|
|
continueOnError: false
|
|
pool:
|
|
vmImage: 'Ubuntu 16.04'
|
|
workspace:
|
|
clean: all
|
|
steps:
|
|
- script: |
|
|
docker-compose build
|
|
displayName: 'Compose build'
|
|
- script: |
|
|
docker-compose run test
|
|
displayName: 'Compose run'
|