Replace registry with windows-registry #100
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: Build winfsp-rs | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
schedule: | |
- cron: "0 0 * * 6" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
strategy: | |
matrix: | |
profile: ['dev', 'release'] | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install nightly Rust | |
uses: dtolnay/rust-toolchain@nightly | |
- name: Install WinFSP | |
run: choco install winfsp | |
- name: Build winfsp-rs | |
run: cargo build --profile ${{ matrix.profile }} -p winfsp --verbose --features=full |