WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Updated rustls

Updated rustls #26

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
windows:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Configure Rust compiler
run: |
rustup update
rustup default ${{ matrix.channel }}
rustup target add ${{ matrix.target }}
rustup component add clippy rustfmt
- name: Formatting
run: cargo fmt --check
- name: Clippy
run: cargo clippy --target ${{ matrix.target }} --workspace --examples --tests
- name: Tests
run: cargo test --target ${{ matrix.target }} --workspace --examples --tests
strategy:
fail-fast: false
matrix:
channel: [stable]
target:
- x86_64-pc-windows-gnu
- x86_64-pc-windows-msvc