Update dependency org.flywaydb:flyway-core to v11 #1063
This file contains hidden or 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: Reindeer Package CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [ '1.8', '1.9', '1.10', '1.11' ] | |
| name: Java Version ${{ matrix.java }} | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Setup java | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| architecture: x64 | |
| - run: make ci |