Skip to content

test

test #2

Workflow file for this run

name: test
on:
workflow_dispatch:
jobs:
run-script:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Run Multitest Script
#working-directory: iptv/speedtest
run: |
cd $GITHUB_WORKSPACE/speedtest
./test.sh
- name: Update Results
run: |
cd $GITHUB_WORKSPACE/speedtest/test/
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update test"
git push