Merge pull request #862 from rswgnu/rsw #1981
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: CI | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: [28.2, 29.4, 30.2, master] | |
| container: silex/emacs:${{ matrix.version }}-ci | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Clean | |
| run: make clean | |
| - name: Compile | |
| shell: bash | |
| run: | | |
| make bin 2>&1 | tee MAKE_BIN_OUTPUT | |
| echo "Number of warnings: $(grep "Warning:" MAKE_BIN_OUTPUT | wc -l)" >> $GITHUB_STEP_SUMMARY | |
| echo '```' >> $GITHUB_STEP_SUMMARY | |
| grep "Warning:" MAKE_BIN_OUTPUT >> $GITHUB_STEP_SUMMARY || true | |
| echo '```' >> $GITHUB_STEP_SUMMARY | |
| - name: Test | |
| run: make test |