Skip to content

Commit

Permalink
Create integration.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
therealryan authored Aug 14, 2024
1 parent ef5928a commit 05ca4f9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Manually triggered, this workflow runs the integration tests that hit the github API endpoints

name: integration testing

on:
workflow_dispatch

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B verify --file pom.xml -pl test -am -Dmctf.report.dir=latest

- name: Save flow execution reports
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
if: success() || failure()
with:
name: flow_execution_reports
path: |
test/target/mctf/e2e/latest
test/target/mctf/github/latest

0 comments on commit 05ca4f9

Please sign in to comment.