Skip to content

Commit

Permalink
add workflow file for python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-1991 committed Dec 2, 2023
1 parent 200eb3a commit 574d405
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test PyDataverse
on: [push]

jobs:
custom_test:
runs-on: ubuntu-latest
name: Test Dataverse Action
env:
PORT: 8080
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: Run Dataverse Action
id: dataverse
uses: gdcc/dataverse-action@test-action
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install Python Dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r ./requirements/tests.txt
- name: Run tests
env:
API_TOKEN: ${{ steps.dataverse.outputs.api_token }}
BASE_URL: ${{ steps.dataverse.outputs.base_url }}
run: |
python3 -m pytest

0 comments on commit 574d405

Please sign in to comment.