Skip to content

Commit

Permalink
chore: run CI for crates (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
layershifter authored Dec 16, 2024
1 parent f1301c7 commit 05d3d72
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/check-crates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Rust CI

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

jobs:
build:

runs-on: ubuntu-latest

env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}

strategy:
fail-fast: false

steps:
- uses: actions/checkout@v4

- name: Build
run: cargo build --all-features
- name: Tests
run: cargo test

0 comments on commit 05d3d72

Please sign in to comment.