mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-23 12:09:37 +00:00
29 lines
549 B
YAML
29 lines
549 B
YAML
|
name: mini/ Tests
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- develop
|
||
|
paths:
|
||
|
- "mini/**"
|
||
|
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- "mini/**"
|
||
|
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
test-common:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
|
||
|
|
||
|
- name: Test Dependencies
|
||
|
uses: ./.github/actions/test-dependencies
|
||
|
with:
|
||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
|
||
|
- name: Run Tests
|
||
|
run: GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features -p mini-serai
|