name: CI (macOS) on: pull_request: types: [opened, synchronize, reopened] push: branches: - master - '1.0' jobs: build_and_test: strategy: fail-fast: false matrix: version: - stable - nightly name: ${{ matrix.version }} - x86_64-apple-darwin runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Install ${{ matrix.version }} uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.version }}-x86_64-apple-darwin profile: minimal override: true - name: check build uses: actions-rs/cargo@v1 with: command: check args: --workspace --bins --examples --tests - name: tests uses: actions-rs/cargo@v1 with: command: test args: --workspace --exclude=actix-tls --no-fail-fast -- --nocapture