We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c2cff60 + b54e77f commit 3cf3620Copy full SHA for 3cf3620
.github/workflows/main.yml
@@ -181,3 +181,35 @@ jobs:
181
run: |
182
mix deps.get
183
mix test
184
+
185
+ test_macos:
186
+ name: macos-11 test
187
+ runs-on: macos-11
188
+ steps:
189
+ - name: Checkout sources
190
+ uses: actions/checkout@v1
191
192
+ - name: Install Erlang/Elixir
193
+ run: |
194
+ brew install elixir
195
+ mix local.hex --force
196
197
+ - name: Install Rust ${{matrix.rust}} toolchain
198
+ uses: actions-rs/toolchain@v1
199
+ with:
200
+ toolchain: stable
201
+ override: true
202
203
+ - run: cargo test
204
205
+ - name: Test rustler_mix
206
+ working-directory: rustler_mix
207
208
+ mix deps.get
209
+ mix test
210
211
+ - name: Test rustler_tests
212
+ working-directory: rustler_tests
213
214
215
0 commit comments