Skip to content

Commit

Permalink
Merge pull request #4 from tthogho1/websocket_QA
Browse files Browse the repository at this point in the history
Add GitHub Actions workflow
  • Loading branch information
tthogho1 authored Oct 9, 2024
2 parents 51f6cce + 17c573a commit 516ecb5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rust CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Cache dependencies
uses: Swatinem/rust-cache@v2

- name: Build
run: cargo build --release

0 comments on commit 516ecb5

Please sign in to comment.