Added Github Action #1
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
name: Build and Test PgBouncer and PostgreSQL | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
services: | |
docker: | |
image: docker:stable | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
options: --privileged | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Docker Compose | |
run: | | |
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
sudo chmod +x /usr/local/bin/docker-compose | |
- name: Build and Start Containers | |
run: docker-compose up -d | |
- name: Verify PgBouncer is Running | |
run: | | |
apt-get update | |
apt-get install -y postgresql-client | |
until PGPASSWORD=password psql -h localhost -p 6432 -U pgbouncer -d pgbouncer -c 'SHOW STATS;'; do | |
sleep 1 | |
done | |
echo "PgBouncer is working!" | |
- name: Stop Containers | |
run: docker-compose down |