From 484d6754c51424e3b49461d54cfeac8fc05993b5 Mon Sep 17 00:00:00 2001 From: Nathan Moreau Date: Sun, 27 Oct 2019 02:40:32 +0100 Subject: Adding GitHub actions. --- .github/workflows/test.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/test.yml (limited to '.github') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..5e703b9 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,33 @@ +name: GitHub actions CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + rust_version: [stable] + emacs_version: + - 24.5 + - 25.1 + - 25.2 + - 25.3 + - 26.1 + - 26.2 + - 26.3 + - snapshot + env: + EMACS_VERSION: ${{ matrix.emacs_version }} + steps: + - uses: hecrj/setup-rust-action@v1 + with: + rust-version: ${{ matrix.rust_version }} + - uses: purcell/setup-emacs@master + with: + version: ${{ matrix.emacs_version }} + + - uses: actions/checkout@v1 + - name: Run tests + run: './run_rust_emacs_tests.sh' -- cgit v1.2.3