diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..15e648c --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,20 @@ +name: CI +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + emacs-version: + - 26.3 + - 27.1 + - 28.1 + - 29.1 + - 29.4 + steps: + - uses: actions/checkout@v2 + - uses: purcell/setup-emacs@master + with: + version: ${{ matrix.emacs-version }} + - name: Run tests + run: make test diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f71f5b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/el-who.elc