Team 1 #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Team 1 Tests | |
# Runs 10 Tests | |
on: | |
workflow_dispatch: | |
workflow_run: | |
workflows: [ "Multiple Teams Simultaneously" ] | |
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=10 |