Update github.com/coinbase/waas-client-library-go #4
Workflow file for this run
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
name: Build and Test | |
on: [push] | |
jobs: | |
format-code: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install dependencies and format code | |
run: | | |
sudo apt-get install -y make | |
pip3 install black isort | |
make format | |
if git diff --quiet; then | |
echo "No code formatting changes detected." | |
else | |
echo "Code formatting changes detected. Please run 'make format' locally and commit the changes." | |
git diff --exit-code | |
exit 1 | |
fi | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python environment | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies and run tests | |
run: | | |
python -m venv venv | |
source venv/bin/activate | |
pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -r test_requirements.txt | |
python -m unittest discover -v |