forked from dymensionxyz/dymension
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (37 loc) · 1.08 KB
/
e2e_test.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
36
37
38
39
40
41
42
43
44
name: E2E Tests
on:
workflow_dispatch:
pull_request:
types:
# trigger workflow if PR is opened directly as R4R.
- opened
# trigger workflow if changes are pushed to the branch.
- synchronize
# trigger workflow if PR is marked ready for review.
- ready_for_review
paths-ignore:
- 'docs/**'
- '**.md'
- 'LICENSE'
permissions:
contents: read
packages: write
jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build image
id: build_image
run: docker build . -t "ghcr.io/dymensionxyz/dymension:e2e"
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: E2E
uses: dymensionxyz/e2e-tests/.github/workflows/e2e-test-workflow-call.yml@1abe429a5c47d8aab8f05801c24a775cdab6be85
with:
dymension_ci: "e2e"