add support for optional web.xml parameters, stamp it as it changes b… #56
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: Molecule Test | |
| on: [push] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v2 | |
| - name: molecule | |
| uses: robertdebock/molecule-action@2.0.0 | |
| with: | |
| entrypoint: /usr/local/bin/molecule | |
| args: lint | |
| test: | |
| needs: | |
| - lint | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: | |
| - image: "centos" | |
| tag: "6" | |
| - image: "centos" | |
| tag: "7" | |
| - image: "centos" | |
| tag: "8" | |
| - image: "amazonlinux" | |
| tag: "2" | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| path: "${{ github.repository }}" | |
| - name: molecule | |
| uses: robertdebock/molecule-action@2.0.0 | |
| with: | |
| image: ${{ matrix.config.image }} | |
| tag: ${{ matrix.config.tag }} | |
| options: "--parallel all" |