Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
0xb-s authored Sep 18, 2024
1 parent f66132a commit 432b3cf
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Rust Build

on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev

env:
CARGO_TERM_COLOR: always

jobs:
build:
name: Build Project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout Code
- uses: actions-rs/toolchain@v1
name: Install Rust Toolchain
with:
profile: minimal
toolchain: stable
override: true
- name: Compile Project
run: cargo build --verbose

0 comments on commit 432b3cf

Please sign in to comment.