mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 09:23:00 +01:00
38 lines
826 B
YAML
38 lines
826 B
YAML
|
name: CI (macOS)
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
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@master
|
||
|
|
||
|
- 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
|
||
|
with:
|
||
|
command: test
|
||
|
args: --all --all-features --no-fail-fast -- --nocapture
|