Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,39 @@ jobs:
run: mix deps.get
- name: Run tests
run: mix test

build-and-test-macos:
strategy:
matrix:
include:
- os: macos-14-xlarge
elixir-version: '1.18.4'
otp-version: '28.0.1'

name: Build and test on ${{ matrix.os }} ${{ matrix.elixir-version }} ${{ matrix.otp-version }}
needs: build-and-test-latest
runs-on: ${{ matrix.os }}
timeout-minutes: 5
defaults:
run:
shell: bash

steps:
- uses: actions/checkout@v4

- name: Set up Elixir
uses: jdx/mise-action@v2
with:
version: '2025.7.2'
install: true
cache: true
experimental: true
log_level: debug
tool_versions: |
erlang: ${{ matrix.otp-version }}
elixir: ${{ matrix.elixir-version }}

- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ be found at <https://hexdocs.pm/node_activator>.
* Ubuntu 22.04 / Elixir 1.15 / OTP 25
* Windows 2022 / Elixir 1.19 / OTP 28
* Windows 2022 / Elixir 1.18 / OTP 28
* macOS Sonoma on Apple Silicon / Elixir 1.18 / OTP 28

## License

Expand Down
3 changes: 2 additions & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"epmd",
"myapp",
"spellweaver",
"nstandard"
"nstandard",
"Sonoma"
]
}
Loading