Skip to content

Commit

Permalink
Test building containers in validation CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rien committed Jun 28, 2024
1 parent f3b7cd2 commit 752ab80
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,39 @@ jobs:

- name: Run test script
run: ./test_package.sh

docker-api:
name: "Build dolos-api docker container"
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Build API container
run: |
cd api
docker build .
docker-web:
name: "Build dolos-web docker container"
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Build WEB container
run: |
cd web
docker build .
docker-cli:
name: "Build dolos-cli docker container"
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Build WEB container
run: |
cd web
docker build .

0 comments on commit 752ab80

Please sign in to comment.