branch: externals/urgrep commit 11e1f7474eef8998da11388011b01cf0af4801d4 Author: Jim Porter <jporterb...@gmail.com> Commit: Jim Porter <jporterb...@gmail.com>
Add CI configuration --- .github/workflows/build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000000..3cffccb9ba --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,24 @@ +name: build +on: + pull_request: + push: + schedule: + - cron: '0 0 1 * *' + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + emacs-version: ['27.2', '28.1', 'snapshot'] + + fail-fast: false + + steps: + - uses: actions/checkout@v2 + - uses: purcell/setup-emacs@master + with: + version: ${{ matrix.emacs-version }} + - name: Run tests + run: | + make check