created vendored crates
This commit is contained in:
parent
8bede44aa8
commit
8ed487c4cd
15672 changed files with 6291182 additions and 0 deletions
42
vendor/version_check/.github/workflows/ci.yml
vendored
Normal file
42
vendor/version_check/.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: "${{ matrix.os.name }} ${{ matrix.test.name }} (${{ matrix.toolchain }})"
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
os:
|
||||
- { name: Linux, distro: ubuntu-latest }
|
||||
- { name: Windows, distro: windows-latest }
|
||||
- { name: macOS, distro: macOS-latest }
|
||||
toolchain: [nightly, beta, stable]
|
||||
include:
|
||||
- os: { name: Linux, distro: ubuntu-latest }
|
||||
toolchain: 1.0.0
|
||||
|
||||
runs-on: ${{ matrix.os.distro }}
|
||||
|
||||
steps:
|
||||
- name: Checkout Sources
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: ${{ matrix.toolchain }}
|
||||
override: true
|
||||
|
||||
- name: Run Tests
|
||||
uses: actions-rs/cargo@v1
|
||||
env:
|
||||
FORCE_STATIC: 1
|
||||
KNOWN_CHANNEL: ${{ matrix.toolchain }}
|
||||
with:
|
||||
command: test
|
||||
Loading…
Add table
Add a link
Reference in a new issue