mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-16 23:37:47 +00:00
35 lines
772 B
YAML
35 lines
772 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: Daily Remote Node Ping
|
|
on:
|
|
schedule:
|
|
- cron: "0 4 * * *"
|
|
workflow_dispatch:
|
|
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
|