Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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