Skip to content

statistics

statistics #708

Workflow file for this run

name: statistics
on:
push:
branches:
- master
schedule:
- cron: '0 0 * * *'
jobs:
plot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: install dependencies
run: |
dir
python -m pip install --upgrade pip
pip install -r requirements.txt
python stat.py
dir
- name: commit file
id: commit
run: |
git config --local user.email "action@github.com"
git config --local user.name "github-actions"
git add --all
if [-z "$(git status --porcelain)"]; then
echo "::set-output name=push::false"
else
git commit -m "update plot" -a
echo "::set-output name=push::true"
fi
shell: bash
- name: push
if: steps.commit.outputs.push == 'true'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}