Skip to content

Team 1 Max

Team 1 Max #5

Workflow file for this run

name: Team 1 Max
on:
workflow_dispatch:
workflow_run:
workflows: [ "Multiple Teams Max Throughput" ]
types:
- completed
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: 11
- name: Set Environment Secret
id: set_env
run: |
echo "SAUCE_USERNAME=${{ secrets.TEAM1_USERNAME }}" >> $GITHUB_ENV
echo "SAUCE_ACCESS_KEY=${{ secrets.TEAM1_ACCESS_KEY }}" >> $GITHUB_ENV
- name: Run Demo
run: mvn test -Dsurefire.parallel=50