gupaxx/.github/workflows/ping.yml

35 lines
745 B
YAML
Raw Normal View History

2023-01-29 01:57:12 +00:00
# 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
2023-01-29 01:57:12 +00:00
on:
schedule:
- cron: "0 4 * * *"
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
2023-01-31 14:25:05 +00:00
env:
CARGO_TERM_COLOR: always
2023-01-29 01:57:12 +00:00
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