Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: libs #166

Draft
wants to merge 17 commits into
base: main
Choose a base branch
from
Draft
22 changes: 22 additions & 0 deletions .github/workflows/crypto.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Crypto

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

env:
CARGO_TERM_COLOR: always

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
cargo build -p atrium-crypto --verbose
- name: Run tests
run: |
cargo test -p atrium-crypto --lib
27 changes: 27 additions & 0 deletions .github/workflows/libs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Libs

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

env:
CARGO_TERM_COLOR: always

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
cargo build -p atrium-libs --verbose
cargo build -p atrium-libs --verbose --features atproto-data
cargo build -p atrium-libs --verbose --features common-web
cargo build -p atrium-libs --verbose --features identity
cargo build -p atrium-libs --verbose --all-features
- name: Run tests
run: |
cargo test -p atrium-libs --lib
cargo test -p atrium-libs --lib --all-features
Loading
Loading