Use Github Pages for the manual #1259
Workflow file for this run
This file contains 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: [27.2, 28.2, 29.4, 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 |