Skip to content

Commit c90876f

Browse files
committed
Add GitHub Actions workflow for Docker testing
1 parent 9d03bbf commit c90876f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/docker-test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Docker Test
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Set up Docker Buildx
16+
uses: docker/setup-buildx-action@v2
17+
18+
- name: Run Docker test script
19+
run: |
20+
chmod +x ./scripts/test-mapeo-config.sh
21+
./scripts/test-mapeo-config.sh

0 commit comments

Comments
 (0)