forked from parallaxsecond/parsec-client-rust
-
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.
Signed-off-by: Tomás González <[email protected]>
- Loading branch information
1 parent
284bc08
commit 0a8739b
Showing
2 changed files
with
25 additions
and
22 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: "Build and check formatting and Mock Tests" | ||
description: "Download Parsec Mock, install dependencies and execute all tests" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.7 | ||
- name: Download Parsec Mock, install dependencies and execute all tests | ||
run: | | ||
curl -s -N -L https://github.com/parallaxsecond/parsec-mock/archive/refs/tags/0.1.1.tar.gz | tar xz | ||
cd parsec-mock-0.1.1/ | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
cd .. | ||
./tests/ci.sh |
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