branch: externals/url-scgi commit 0d7b73ae4301f487cbaf213fac612919203e71f8 Author: Stefan Kangas <stefankan...@gmail.com> Commit: Stefan Kangas <stefankan...@gmail.com>
Add GitHub CI "test" workflow --- .github/workflows/test.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000000..2b2b3d76d5 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,33 @@ +name: test +on: [ push, pull_request ] +jobs: + test: + runs-on: ubuntu-latest + + strategy: + matrix: + emacs_version: + - 25.1 + - 25.3 + - 26.1 + - 26.2 + - 26.3 + - 27.1 + - 27.2 + - 28.1 + - snapshot + + steps: + - name: Checkout url-scgi + uses: actions/checkout@v2 + + - name: Install emacs + uses: purcell/setup-emacs@master + with: + version: ${{ matrix.emacs_version }} + + - name: Build url-scgi + run: make all + + - name: Test url-scgi + run: make test