2020-03-05 06:23:50 +02:00
|
|
|
name: generator
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 1 * * *'
|
2020-08-31 10:47:05 +02:00
|
|
|
workflow_dispatch:
|
2020-03-05 06:23:50 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
|
|
|
python-version: [3.7]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
|
|
|
- name: Run script
|
|
|
|
run: |
|
|
|
|
python generator.py
|
|
|
|
- name: Push
|
2022-04-18 03:07:29 +02:00
|
|
|
uses: github-actions-x/commit@v2.9
|
2020-03-05 06:23:50 +02:00
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.TOKEN }}
|
|
|
|
push-branch: 'master'
|
|
|
|
commit-message: 'This is an github action commit.'
|
|
|
|
force-add: 'true'
|