Bump log from 0.4.22 to 0.4.25 #177
Workflow file for this run
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: Test Binary Build | |
on: | |
push: | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-latest | |
steps: | |
- name: Set up Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Install dependencies | |
run: brew install messense/macos-cross-toolchains/x86_64-unknown-linux-gnu mingw-w64 | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Build binaries | |
run: cargo build --release |