[GTFS Fares v2] Add nonconsecutive_transfer_allowed field and clarify fare_transfer_type #572
Workflow file for this run
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: Validate GTFS-realtime .proto file | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | |
settings-path: ${{ github.workspace }} # location for the settings.xml file | |
- name: Install Protoc | |
uses: arduino/setup-protoc@master | |
- name: Compile Java bindings | |
run: protoc --java_out=gtfs-realtime/proto gtfs-realtime/proto/gtfs-realtime.proto |