-
-
Notifications
You must be signed in to change notification settings - Fork 131
30 lines (25 loc) · 655 Bytes
/
test.yml
File metadata and controls
30 lines (25 loc) · 655 Bytes
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
name: Run Integration Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v2
continue-on-error: true
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Run Tests
env:
DOCKER_CONFIG_FILE: /home/runner/.docker/config.json
working-directory: ./test
run: |
BUILD_IMAGE=1 ./test.sh