Skip to content

Update Analyisis

Update Analyisis #66

Workflow file for this run

name: Update Analyisis
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0" # weekly
jobs:
update:
runs-on: ubuntu-latest
container: obolibrary/odkfull:v1.3.1
strategy:
max-parallel: 1
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Update Git Configuration
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Install dependencies
run: |
python -m pip install -e .
- name: Create local changes
id: update
run: |
python -m oquat.large_scale_analysis --force
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
message: 'πŸ“ Update oquat'
default_author: github_actions