2022-05-30 04:34:22 +02:00
|
|
|
name: Merge (with bors)
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- staging
|
|
|
|
- trying
|
|
|
|
tags-ignore:
|
|
|
|
- "cli-v*.*.*"
|
|
|
|
- "lib-v*.*.*"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-30 04:44:50 +02:00
|
|
|
include:
|
|
|
|
- name: stable-ubuntu
|
|
|
|
platform: ubuntu
|
|
|
|
toolchain: stable
|
|
|
|
- name: stable-windows
|
|
|
|
platform: windows
|
|
|
|
toolchain: stable
|
|
|
|
- name: stable-macos
|
|
|
|
platform: macos
|
|
|
|
toolchain: stable
|
|
|
|
- name: msrv-ubuntu
|
|
|
|
platform: ubuntu
|
|
|
|
toolchain: 1.58.0
|
|
|
|
- name: msrv-windows
|
|
|
|
platform: windows
|
|
|
|
toolchain: 1.58.0
|
|
|
|
- name: msrv-macos
|
|
|
|
platform: macos
|
|
|
|
toolchain: 1.58.0
|
2022-05-30 04:34:22 +02:00
|
|
|
|
2022-05-30 04:44:50 +02:00
|
|
|
name: Test on ${{ matrix.platform }} with Rust ${{ matrix.toolchain }}
|
2022-05-30 04:34:22 +02:00
|
|
|
runs-on: "${{ matrix.platform }}-latest"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
2022-05-30 04:44:50 +02:00
|
|
|
toolchain: "${{ matrix.toolchain }}"
|
2022-05-30 04:34:22 +02:00
|
|
|
override: true
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|