Update casks for emacs-28.3-rc1-mac-9.2 and emacs-29.4-mac-10.1 #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Emacs 28 Cask | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - "Casks/emacs-mac-28.rb" | |
| - ".github/workflows/emacs28-cask.yml" | |
| pull_request: | |
| paths: | |
| - "Casks/emacs-mac-28.rb" | |
| - ".github/workflows/emacs28-cask.yml" | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - macos-13 | |
| - macos-14 | |
| - macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Cask | |
| run: brew tap railwaycat/emacsmacport . | |
| - name: Install Emacs-mac | |
| run: brew install --cask emacs-mac-28 | |
| - name: Test Binaries | |
| run: | | |
| $(brew --prefix)/bin/emacs --version | |
| $(brew --prefix)/bin/emacs --batch --eval='(print (+ 2 2))' |