\#963: Add TEXT and HTML in mail to fix bad mime-type. #8675
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: Run tests | |
| on: | |
| push: | |
| jobs: | |
| test-basic: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: ./.github/setup-tests | |
| - run: make test.reset | |
| - run: make test.basic | |
| test-basic-rr: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: ./.github/setup-tests | |
| - run: make test.reset.rr | |
| - run: make test.basic | |
| test-full: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: ./.github/setup-tests | |
| - run: make test.reset | |
| - run: make test.full | |
| test-full-rr: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: ./.github/setup-tests | |
| - run: make test.reset.rr | |
| - run: make test.full |