This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
Update README.md #93
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: Run Tests | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
tests: | |
name: Run OTP tests | |
runs-on: ubuntu-latest | |
env: | |
SETTINGS_PATH: ${{ github.workspace }}/OTP/mbta/ci-maven-settings.xml | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: ${{ github.workspace }}/OTP | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 8 | |
settings-path: ${{ github.workspace }}/OTP/mbta | |
- uses: actions/checkout@v2 | |
with: | |
repository: mbta/onebusaway-gtfs-modules | |
path: ${{ github.workspace }}/onebusaway-gtfs-modules | |
fetch-depth: 1 | |
- name: Install onebusaway-gtfs-modules | |
run: | | |
mvn clean install -Dmaven.test.skip=true -Dgpg.skip -Dmaven.javadoc.skip=true -Dlicense.skip=true -s $SETTINGS_PATH | |
working-directory: ${{ github.workspace }}/onebusaway-gtfs-modules | |
- name: Run OTP tests | |
run: | | |
mvn test -Dgpg.skip -Dmaven.javadoc.skip=true -s $SETTINGS_PATH | |
working-directory: ${{ github.workspace }}/OTP | |
deploy-prod: | |
name: Deploy master branch to OTP-prod | |
if: ${{ github.ref == 'refs/heads/master' }} | |
needs: tests | |
uses: ./.github/workflows/use-deploy-ecs.yml | |
with: | |
deployment-env: prod | |
secrets: inherit |