Skip to content

Commit

Permalink
Merge pull request #1 from piny4man/feat/monitor-several-urls
Browse files Browse the repository at this point in the history
feat: multiple urls monitoring
  • Loading branch information
piny4man authored Aug 16, 2024
2 parents c946dc3 + ebdfb5e commit 5ecaca3
Show file tree
Hide file tree
Showing 7 changed files with 1,284 additions and 20 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Rust

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

env:
CARGO_TERM_COLOR: always
RUST_LOG: ${{ secrets.RUST_LOG }}
APP_PORT: ${{ secrets.APP_PORT }}
DATABASE_URL: ${{ secrets.DATABASE_URL }}

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
Loading

0 comments on commit 5ecaca3

Please sign in to comment.