O3BYEXB7CYUZEJJMTWLC3CQJJ2CCMRUMDADCKKW4ADQR22TQ43NQC name: Build binary# This workflow is triggered on pushes to the repository.on: [push]jobs:build:name: Buildruns-on: ${{ matrix.os }}-lateststrategy:matrix:os:- ubuntu- windows- macosinclude:- os: ubuntubinary: convco- os: macosbinary: convco- os: windowsbinary: convco.exesteps:- uses: actions/checkout@v1- name: Install stable toolchainuses: actions-rs/toolchain@v1with:profile: minimaltoolchain: stableoverride: true- name: Build ${{ matrix.os }} binaryuses: actions-rs/cargo@v1with:command: buildargs: --release- name: Upload ${{ matrix.os }} binaryuses: actions/upload-artifact@v1with:name: convco-${{ matrix.os }}path: target/release/${{ matrix.binary }}