Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
fetch-depth: 0
- uses: actions/checkout@v3
with:
repository: 'maproulette/maproulette2'
path: 'maproulette2'
repository: 'maproulette/maproulette-backend'
path: 'maproulette-backend'
fetch-depth: 0
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
Expand All @@ -53,13 +53,13 @@ jobs:
pushd java-client
./gradlew build

- name: Build maproulette2 sbt
- name: Build maproulette-backend sbt
run: |
pushd maproulette2
pushd maproulette-backend
sbt compile
- name: Create the maproulette2 dev.conf
- name: Create the maproulette-backend dev.conf
run: |
pushd maproulette2
pushd maproulette-backend
touch ./conf/dev.conf
echo 'include "application.conf"' >> ./conf/dev.conf
echo 'db.default {' >> ./conf/dev.conf
Expand All @@ -81,7 +81,7 @@ jobs:
scheme: http
apiKey: 1234
run: |
pushd maproulette2
pushd maproulette-backend
sbt -Dconfig.file=./conf/dev.conf run &
sleep 15
popd
Expand Down