Skip to content

Commit

Permalink
[Amir] basic ci for rust app
Browse files Browse the repository at this point in the history
  • Loading branch information
anagri committed Mar 12, 2024
1 parent 4390449 commit c6da7fe
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Rust CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit c6da7fe

Please sign in to comment.