branch: master commit 61d29bbaba8a312c75e78edae1d0047d7eae4473 Author: Justin Burkett <jus...@burkett.cc> Commit: Justin Burkett <jus...@burkett.cc>
Travis -> github workflow --- .github/workflows/test.yml | 30 ++++++++++++++++++++++++++++++ .travis.yml | 25 ------------------------- 2 files changed, 30 insertions(+), 25 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..7c77b01 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,30 @@ +name: evil-vdiff-test +on: + pull_request: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + emacs_version: + - 25.1 + - 25.2 + - 25.3 + - 26.1 + - 26.2 + - 26.3 + - snapshot + steps: + + - uses: actions/checkout@v2 + - uses: actions/setup-python@v1 + - uses: purcell/setup-emacs@master + with: + version: ${{ matrix.emacs_version }} + - uses: conao3/setup-cask@master + - name: Run tests + run: make test diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 03f0d96..0000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ -before_install: - - git clone https://github.com/rejeep/evm.git $HOME/.evm - - export PATH="$HOME/.evm/bin:$PATH" - - export PATH="$HOME/.cask/bin:$PATH" - - evm config path /tmp - - evm install $EVM_EMACS --use --skip - - curl -fsSkL https://raw.github.com/cask/cask/master/go | python - -env: - - EVM_EMACS=emacs-24.4-travis - - EVM_EMACS=emacs-24.5-travis - - EVM_EMACS=emacs-25.1-travis - - EVM_EMACS=emacs-25.2-travis - - EVM_EMACS=emacs-25.3-travis - - EVM_EMACS=emacs-26.1-travis - - EVM_EMACS=emacs-git-snapshot-travis - -matrix: - fast_finish: true - allow_failures: - - env: EVM_EMACS=emacs-git-snapshot-travis - -script: - - emacs --version - - make test