This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'date' | |
require "open-uri" | |
require 'json' | |
# This is just one big file, because it's easy to copy&paste (a.k.a. deploy) | |
# this script on a cheap VPN and set up a cronjob to run this once per day. | |
# | |
# | |
# Example output with Telegram markdown formatting | |
# shows the winning team and players who have goals or assists |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
db: | |
image: postgres | |
ports: ['5432:5432'] | |
env: |
OlderNewer