Skip to content

Commit

Permalink
ci: added gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
BRAVO68WEB committed Dec 25, 2023
1 parent 130f235 commit 7136177
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-rs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Rust Build CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
rust:
name: Test Rust Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Installing Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Building with Cargo
uses: actions-rs/cargo@v1
with:
command: build
args: --release

0 comments on commit 7136177

Please sign in to comment.