Drop default service; warn and fall back to ÖBB in hafas-m #189
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: linux | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
perl: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
perl-version: | |
- '5.30' | |
- 'latest' | |
- 'threaded' | |
container: | |
image: perl:${{ matrix.perl-version }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: perl -V | |
run: perl -V | |
- name: Install Dependencies | |
run: curl -sL https://raw.githubusercontent.com/skaji/cpm/master/cpm | perl - install -g --show-build-log-on-failure | |
- name: Prepare Build | |
run: perl Build.PL | |
- name: build | |
run: ./Build | |
- name: Run Tests | |
run: prove -l t |