mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 20:29:23 +00:00
Restores using ubuntu-latest. Basically, at some point in the last year the existing Docker e2e tests started failing. I'm unclear if this is an issue with the OS, the docker packages, or what. This just tries to find a solution.
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
name: networks/ Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
paths:
|
|
- "common/**"
|
|
- "crypto/**"
|
|
- "networks/**"
|
|
|
|
pull_request:
|
|
paths:
|
|
- "common/**"
|
|
- "crypto/**"
|
|
- "networks/**"
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-networks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
|
|
|
|
- name: Test Dependencies
|
|
uses: ./.github/actions/test-dependencies
|
|
|
|
- name: Run Tests
|
|
run: |
|
|
GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features \
|
|
-p bitcoin-serai \
|
|
-p alloy-simple-request-transport \
|
|
-p ethereum-serai \
|
|
-p serai-ethereum-relayer \
|
|
-p monero-io \
|
|
-p monero-generators \
|
|
-p monero-primitives \
|
|
-p monero-mlsag \
|
|
-p monero-clsag \
|
|
-p monero-borromean \
|
|
-p monero-bulletproofs \
|
|
-p monero-serai \
|
|
-p monero-rpc \
|
|
-p monero-simple-request-rpc \
|
|
-p monero-address \
|
|
-p monero-wallet \
|
|
-p monero-serai-verify-chain
|