ping in batches of 100 and display results staggered by response time #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- "*" | |
jobs: | |
build: | |
name: Publish for ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
name: [linux, windows, macos] | |
include: | |
- name: linux | |
os: ubuntu-latest | |
artifact_name: bping | |
asset_name: bping-linux | |
- name: windows | |
os: windows-latest | |
artifact_name: bping.exe | |
asset_name: bping-windows | |
- name: macos | |
os: macos-latest | |
artifact_name: bping | |
asset_name: bping-macos | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- name: Build | |
run: cargo build --release |