Skip to content

Commit

Permalink
Add a github workflow file (in progress)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmitsuboshi committed Oct 20, 2024
1 parent 9ee4dbb commit 0d02ff6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: cargo build check
on: push
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- run: echo "Build check on ${{ runner.name }}"
- run: cargo build --release -F extended
windows:
runs-on: windows-latest
steps:
- run: echo "Build check on ${{ runner.name }}"
- run: cargo build --release -F extended
macos:
runs-on: macos-latest
steps:
- run: echo "Build check on ${{ runner.name }}"
- run: cargo build --release -F extended

0 comments on commit 0d02ff6

Please sign in to comment.