forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request dashpay#44 from UdjinM6/chia_bkp_1.0.15
Merge chia tag 1.0.15 into develop
- Loading branch information
Showing
21 changed files
with
935 additions
and
611 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
name: Build and Test C++, Javascript, and Python | ||
|
||
on: [push, pull_request] | ||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- '**' | ||
pull_request: | ||
branches: | ||
- '**' | ||
|
||
concurrency: | ||
# SHA is added to the end if on `main` to let all main workflows run | ||
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ (github.ref == 'refs/heads/main') && github.sha || '' }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build_wheels: | ||
|
@@ -10,17 +23,11 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: [macos-latest, ubuntu-latest] | ||
python: ['3.7', '3.8', '3.9'] | ||
python: ['3.7', '3.8', '3.9', '3.10'] | ||
|
||
steps: | ||
- name: Cancel previous runs on the same branch | ||
if: ${{ github.ref != 'refs/heads/main' }} | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v2 | ||
name: Install Python | ||
|
@@ -62,7 +69,7 @@ jobs: | |
python python-impl/impl-test.py | ||
- name: Install emsdk | ||
uses: mymindstorm/setup-emsdk@v9 | ||
uses: mymindstorm/setup-emsdk@v11 | ||
|
||
- name: Test javascript bindings | ||
run: | | ||
|
Oops, something went wrong.