Skip to content

Commit

Permalink
qa
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Oct 29, 2023
1 parent 9c34361 commit 0e0ad83
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Quality Assistance
permissions:
contents: write
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install dependencies
run: pip install pandas

- name: make
run: make -B
env:
DATABASE_URL: ${{ secrets.DB_CONNECTION_STRING }}

- name: Commit changes
uses: EndBug/add-and-commit@v7
with:
message: 'update data'

0 comments on commit 0e0ad83

Please sign in to comment.