Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

chore(deps): bump reqwest from 0.11.18 to 0.11.24 #113

chore(deps): bump reqwest from 0.11.18 to 0.11.24

chore(deps): bump reqwest from 0.11.18 to 0.11.24 #113

Workflow file for this run

name: Check
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
check:
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu # arch: x86_64, os: linux
- aarch64-unknown-linux-gnu # arch: aarch64
- armv7-unknown-linux-gnueabihf # arch: armv7
- x86_64-apple-darwin # os: darwin
- aarch64-apple-darwin # os: darwin
- x86_64-pc-windows-msvc # os: windows
include:
- target: x86_64-unknown-linux-gnu
host_os: ubuntu-latest
- target: aarch64-unknown-linux-gnu
host_os: ubuntu-latest
- target: armv7-unknown-linux-gnueabihf
host_os: ubuntu-latest
- target: x86_64-apple-darwin
host_os: macos-latest
- target: aarch64-apple-darwin
host_os: macos-latest
- target: x86_64-pc-windows-msvc
host_os: windows-latest
runs-on: ${{ matrix.host_os }}
steps:
- uses: actions/checkout@v3
- name: Prepare
shell: bash
run: |
rustup target add ${{ matrix.target }}
- name: Tests
run: cargo test --all-features
- name: Build
shell: bash
run: |
if [[ "${{ matrix.host_os }}" == "ubuntu-latest" ]]; then
sudo .github/workflows/install-cross.sh
cross build --target ${{ matrix.target }}
else
cargo build --target ${{ matrix.target }}
fi