-
-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run tests on macOS 14 Sonoma in GitHub Actions.
- Loading branch information
Showing
1 changed file
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,11 +151,11 @@ jobs: | |
# # - name: "Run nb.go bats tests" | ||
# # run: script -q -e -c "bats test" | ||
|
||
test-macos-12: | ||
name: "Test: macOS 12 Monterey" | ||
runs-on: macos-12 | ||
test-macos-14: | ||
name: "Test: macOS 14 Sonoma" | ||
runs-on: macos-14 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: "Setup" | ||
run: | | ||
brew update | ||
|
@@ -184,6 +184,39 @@ jobs: | |
# run: cd nb.go && go test | ||
# - name: "Run nb.go bats test" | ||
# run: unbuffer bats test | ||
# test-macos-12: | ||
# name: "Test: macOS 12 Monterey" | ||
# runs-on: macos-12 | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - name: "Setup" | ||
# run: | | ||
# brew update | ||
# brew install bat | ||
# brew install bats-core | ||
# brew install expect | ||
# brew install gpg | ||
# brew install nmap | ||
# brew install pandoc | ||
# brew install ripgrep | ||
# brew install w3m | ||
# gem install asciidoctor | ||
# git config --global user.name "Example Name" | ||
# git config --global user.email "[email protected]" | ||
# - uses: browser-actions/setup-chrome@v1 | ||
# id: setup-chrome | ||
# - run: | | ||
# ${{ steps.setup-chrome.outputs.chrome-path }} --version | ||
# - name: "Set $TERM=xterm" | ||
# run: printf "TERM=xterm\\n" >> $GITHUB_ENV | ||
# - name: "Run bats tests" | ||
# run: unbuffer bats test | ||
# # - name: "Install Go" | ||
# # uses: actions/setup-go@v2 | ||
# # - name: "Run go test" | ||
# # run: cd nb.go && go test | ||
# # - name: "Run nb.go bats test" | ||
# # run: unbuffer bats test | ||
# test-macos-11: | ||
# name: "Test: macOS Big Sur 11.0" | ||
# runs-on: macos-11.0 | ||
|