Test providers #389
This file contains 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: Test providers | |
on: | |
# Triggers the workflow on push | |
push: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Run every 12 hours | |
schedule: | |
- cron: "0 */12 * * *" # Runs at 00:00 and 12:00 UTC every day. | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
providers: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: run tor | |
run: | | |
mkdir -p tor && sudo echo "SOCKSPort 0.0.0.0:9150" > ./tor/torrc | |
docker run -d --network host --name=tor -v `pwd`/tor:/etc/tor connectical/tor | |
sleep 10 | |
- name: setup git config | |
run: | | |
git config user.name "GitHub Actions Bot" | |
git config user.email "<>" | |
- name: Check all endpoints reachability with JSON HTTP client | |
run: bash check.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |