-
Notifications
You must be signed in to change notification settings - Fork 3
35 lines (34 loc) · 1.06 KB
/
test-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Test Build Docker image
on:
pull_request:
types: [opened, reopened]
jobs:
build-docker-image:
name: Build Docker Image
runs-on: ubuntu-24.04
steps:
- name: Check out repository code
uses: actions/checkout@v2
- run: git fetch --prune --unshallow
- name: Declare some variables
id: vars
shell: bash
run: |
echo "##[set-output name=tagname;]$(git describe)"
# This step will configure environment variables to be used by all steps
# involving AWS interaction further down
- name: AWS credentials configuration
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Amazon ECR login
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build Docker image
run: |
docker build -t ferret .
- name: Run Docker image
run: |
docker run -t ferret coverage run src/unit_tests.py