Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
joanestebanr committed Jul 25, 2024
1 parent 6735d80 commit e8901a3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 40 deletions.
37 changes: 0 additions & 37 deletions .github/test-e2e.yml

This file was deleted.

29 changes: 26 additions & 3 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,37 @@
name: Test e2e
on:
push:
branches:
- '**'
workflow_dispatch: {}
pull_request:
types: [opened, synchronize, reopened]

jobs:
test-e2e:
strategy:
fail-fast: false
matrix:
go-version: [ 1.21.x ]
goarch: [ "amd64" ]
e2e-group: [ "elderberry-validium", "elderberry-rollup" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744

- name: Install Go
uses: actions/setup-go@v3
with:
fetch-depth: 0
go-version: ${{ matrix.go-version }}
env:
GOARCH: ${{ matrix.goarch }}

- name: Build Docker
run: make build-docker



- name: Test
run: make test-e2e-${{ matrix.e2e-group }}
working-directory: test

0 comments on commit e8901a3

Please sign in to comment.