Skip to content

Commit

Permalink
Merge pull request #2 from andreasgriffin/bug_fixes
Browse files Browse the repository at this point in the history
trying to get workflow to run
  • Loading branch information
andreasgriffin authored Jul 13, 2024
2 parents bec9cd4 + aaab4fe commit 72e81d5
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Pytest

on:
push:
branches: [ "main" ]
branches: [ "master" ]
pull_request:
branches: [ "main" ]
branches: [ "master" ]

jobs:
test:
Expand All @@ -22,7 +22,12 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}


- name: Setup libsecp256k1-dev
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libsecp256k1-dev
- name: Install Python dependencies
run: |
Expand Down

0 comments on commit 72e81d5

Please sign in to comment.