-
Notifications
You must be signed in to change notification settings - Fork 1.3k
34 lines (30 loc) · 792 Bytes
/
e2e.yml
File metadata and controls
34 lines (30 loc) · 792 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
31
32
33
34
name: E2E Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
paths:
- 'internal/cmd/install*.go'
- 'internal/cmd/rig*.go'
- 'internal/cmd/crew*.go'
- 'internal/cmd/doctor*.go'
- 'internal/cmd/daemon*.go'
- 'internal/config/**'
- 'internal/routing/**'
- 'internal/doctor/**'
- 'internal/cmd/*_integration_test.go'
- 'Dockerfile.e2e'
- 'Makefile'
- '.github/workflows/e2e.yml'
jobs:
e2e:
name: E2E Tests (Container)
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- name: Build test container
run: docker build -f Dockerfile.e2e -t gastown-test .
- name: Run E2E tests
run: docker run --rm gastown-test