-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
79 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: Test | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- add-ci-pipeline | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and export | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: Containerfile | ||
tags: glvd:latest | ||
outputs: type=docker,dest=/tmp/glvd.tar | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: glvd | ||
path: /tmp/glvd.tar | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
DATABASE_URL: postgres://user:password@localhost:5432/glvd_test | ||
|
||
services: | ||
postgres: | ||
image: postgres | ||
env: | ||
POSTGRES_DB: glvd_test | ||
POSTGRES_USER: user | ||
POSTGRES_PASSWORD: password | ||
ports: | ||
- 5432:5432 | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Download artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: glvd | ||
path: /tmp | ||
|
||
- name: Load image | ||
run: | | ||
docker load --input /tmp/glvd.tar | ||
- name: Run image | ||
run: | | ||
docker run \ | ||
--env RAILS_ENV=test \ | ||
--env DATABASE_URL="$DATABASE_URL" \ | ||
--network host \ | ||
--rm \ | ||
${{ steps.build.outputs.imageid }} \ | ||
sudo apt update && \ | ||
sudo apt install -y ca-certificates python3-pytest python3-pytest-flake8 mypy && \ | ||
py.test-3 --flake8 /usr/local/src && \ | ||
mypy --show-error-codes --namespace-packages /usr/local/src |
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