Skip to content

Commit

Permalink
added check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalkrishnads committed Jul 27, 2024
1 parent b4e47f5 commit 6851d95
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build check

on:
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-22.04

steps:
- name: setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
override: true
- name: build project
run: cargo build --release --verbose

0 comments on commit 6851d95

Please sign in to comment.