Skip to content

Removed unneeded webpki dependency from Cargo.lock #79

Removed unneeded webpki dependency from Cargo.lock

Removed unneeded webpki dependency from Cargo.lock #79

Workflow file for this run

---
name: Cross-platform tests
# Do this on every push, except tags
on:
push:
tags-ignore:
- "**"
branches:
- "**"
pull_request:
env:
CARGO_TERM_COLOR: always
MWA_ASVO_API_KEY: ${{ secrets.MWA_ASVO_API_KEY }}
jobs:
test:
name: Test ${{ matrix.os }} toolchain ${{ matrix.toolchain }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
toolchain: [stable]
include:
- os: ubuntu-latest
toolchain: "msrv"
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get MSRV
if: matrix.toolchain == 'msrv'
run:
echo "MSRV=$(grep -m1 'rust-version' Cargo.toml | sed 's|.*\"\(.*\)\"|\1|')" >> "$GITHUB_ENV"
- name: Install toolchain ${{ matrix.toolchain }}
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain == 'msrv' && env.MSRV || matrix.toolchain }}
override: true
- name: Run tests (no default feautures)
run: cargo test --no-default-features --locked
- name: Run tests
run: cargo test --locked