Separate lib
code from bin
in mining-device
#4257
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
on: | |
push: | |
branches: [ main, dev ] | |
pull_request: | |
branches: [ main, dev ] | |
# Check sv2.h file is up to date with commit | |
name: sv2.h Header Check | |
jobs: | |
sv2_header_check: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
include: | |
- os: ubuntu-latest | |
target: x86_64-unknown-linux-musl | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.65.0 | |
override: true | |
- name: Check sv2 header file is up to date with commit | |
run: | | |
echo Check sv2 header file is up to date with commit | |
sh ./scripts/sv2-header-check.sh |