2020-01-30 06:44:05 +01:00
|
|
|
name: CI (macOS)
|
|
|
|
|
2020-07-19 23:18:00 +02:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2020-01-30 06:44:05 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_test:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
version:
|
|
|
|
- stable
|
|
|
|
- nightly
|
|
|
|
|
|
|
|
name: ${{ matrix.version }} - x86_64-apple-darwin
|
|
|
|
runs-on: macos-latest
|
|
|
|
|
|
|
|
steps:
|
2020-10-13 16:54:04 +02:00
|
|
|
- uses: actions/checkout@main
|
2020-01-30 06:44:05 +01:00
|
|
|
|
|
|
|
- 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: --all --bins --examples --tests
|
|
|
|
|
|
|
|
- name: tests
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
timeout-minutes: 40
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --package=actix-cors
|
|
|
|
--package=actix-protobuf
|
|
|
|
--package=actix-web-httpauth
|
|
|
|
--all-features --no-fail-fast -- --nocapture
|