v1.0.0: Complete architectural refactor with 10 output formats #9
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: test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test-3_1_3: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pandoc/actions/setup@v1 | |
| with: | |
| version: 3.1.3 | |
| - name: Run alerts-normalize tests (Pandoc) | |
| run: make test-pandoc | |
| - name: Run alerts-normalize tests (Quarto format) | |
| run: make test-quarto | |
| - name: Run alerts-normalize roundtrip tests | |
| run: make test-roundtrip | |
| test-latest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pandoc/actions/setup@v1 | |
| - name: Run alerts-normalize tests (Pandoc) | |
| run: make test-pandoc | |
| - name: Run alerts-normalize tests (Quarto format) | |
| run: make test-quarto | |
| - name: Run alerts-normalize roundtrip tests | |
| run: make test-roundtrip | |
| test-quarto: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: quarto-dev/quarto-actions/setup@v2 | |
| - name: Run alerts-normalize tests (Quarto + pandoc-format) | |
| run: make test-quarto-pandoc | |
| - name: Run alerts-normalize roundtrip tests | |
| run: make test-roundtrip |