diff options
-rw-r--r-- | .woodpecker.yml | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/.woodpecker.yml b/.woodpecker.yml index ba2c7b5..a9efb82 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,15 +1,20 @@ pipeline: - current: + current-emacs: image: silex/emacs:cask - commands: - - emacs --version - - cask install - - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit - last: + when: + branch: [main, develop] + commands: + - emacs --version + - cask install + - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit + + last-emacs: image: silex/emacs:27-ci-cask - commands: - - emacs --version - - cask install - - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit + when: + branch: [main, develop] + commands: + - emacs --version + - cask install + - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit + -+branches: [ main, develop ] |