A native webfishing installer for macos

Create rust.yml

authored by regnault.dev and committed by GitHub 0f9e96f9 3c78a28b

Changed files
+19
.github
workflows
+19
.github/workflows/rust.yml
··· 1 + name: Rust 2 + 3 + on: 4 + push: 5 + branches: [ "master" ] 6 + pull_request: 7 + branches: [ "master" ] 8 + 9 + env: 10 + CARGO_TERM_COLOR: always 11 + 12 + jobs: 13 + build: 14 + 15 + runs-on: macos-latest 16 + steps: 17 + - uses: actions/checkout@v4 18 + - name: Build 19 + run: cargo build --verbose