Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cmccarthyIrl committed Mar 9, 2024
1 parent 071ada7 commit 9f9d7ba
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ on:
branches: [ "master" ]

jobs:
build:

start_emulator:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
Expand All @@ -23,7 +23,11 @@ jobs:
- name: Start Emulator #
run: |
chmod +x ./.github/scripts/startEmulator.sh
./.github/scripts/startEmulator.sh
./.github/scripts/startEmulator.sh
- name: Test
run: mvn clean install
view_emulator_log:
needs: start_emulator
runs-on: ubuntu-latest
steps:
- name: View Emulator Log
run: cat emulator_log.txt

0 comments on commit 9f9d7ba

Please sign in to comment.