Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhong5297 committed Nov 28, 2023
1 parent 477781d commit b088876
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .env.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dune_api_key=
github_token=
31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Python CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v4
with:
python-version: '3.9'

- name: Log directory structure
run: |
pwd
ls -R
- name: pip requirements
run: pip install -r requirements.txt

- name: Run test script
run: python -u github_workflows/action.py
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

.env
1 change: 1 addition & 0 deletions github_workflows/action.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print('test action hello wrld')
5 changes: 5 additions & 0 deletions queries.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

query_ids:
- query_id_1
- query_id_2
- query_id_3
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dune-client==1.3.0

0 comments on commit b088876

Please sign in to comment.