Skip to content

Commit

Permalink
chore: Merge remote-tracking branch 'origin/main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
calteran committed Dec 11, 2023
2 parents 4afa56e + b378b11 commit 43a630f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflow/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Rust CI

on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop

jobs:
build_and_test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Build
run: cargo build --verbose

- name: Run tests
run: cargo test --verbose

0 comments on commit 43a630f

Please sign in to comment.