mirror of
https://github.com/hinto-janai/gupax.git
synced 2025-01-03 16:59:21 +00:00
f3d29c99de
Some checks failed
Cache `gupax.io` / build (push) Has been cancelled
CI / ci (macos-14) (push) Has been cancelled
CI / ci (ubuntu-20.04) (push) Has been cancelled
CI / ci (windows-2019) (push) Has been cancelled
gupax.io / build (push) Has been cancelled
Remote Node Ping / build (push) Has been cancelled
Typo / typo (push) Has been cancelled
32 lines
709 B
YAML
32 lines
709 B
YAML
# This uses the unit test in the [node.rs] file to ping all REMOTE_NODES
|
|
# and attempts to serialize their JSON data to make sure they are working.
|
|
|
|
name: Remote Node Ping
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Cache
|
|
uses: actions/cache@v3.2.3
|
|
with:
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
target
|
|
key: ping
|
|
- uses: actions/checkout@v3
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install -y libgtk-3-dev
|
|
- name: Ping
|
|
run: cargo test -- --ignored --nocapture
|