Skip to content

Commit

Permalink
add from macos-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Sep 23, 2024
1 parent 60f919c commit 6e7c33e
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/macos_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md

on:
push:
tags-ignore:
- '**'
pull_request:
branches:
- '**'

name: MacOS Tests

jobs:
test:
strategy:
matrix:
os:
- "macos-latest"
- "macos-10.15"
name: MacOS Tests
continue-on-error: true
runs-on: "${{ matrix.os }}"
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy

- name: Install Cargo Make
uses: davidB/rust-cargo-make@v1

- name: Install Dependencies
run: cargo make install_deps

- run: cargo make test --no-default-features
- run: cargo make test

0 comments on commit 6e7c33e

Please sign in to comment.