Skip to content

Commit

Permalink
ci: Run e2e test on PRs, merges to main and manually
Browse files Browse the repository at this point in the history
  • Loading branch information
yiannistri committed Apr 14, 2023
1 parent b257662 commit acae9aa
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: e2e

on:
workflow_dispatch:

jobs:
e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.0
- name: Setup
uses: actions/setup-go@v4.0.0
with:
go-version: 1.20.x
- name: Prepare
run: |
echo "machine github.com login ${{ github.actor }} password ${{ secrets.BUILD_BOT_TOKEN }}" > ~/.netrc
- name: Run E2E tests
run: make e2e

0 comments on commit acae9aa

Please sign in to comment.