Skip to content

Update ci.yml (#293) #765

Update ci.yml (#293)

Update ci.yml (#293) #765

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install
run: |
sudo apt-get update
python3 -m venv .env
source .env/bin/activate
python -m pip install -U pip
make install-dev
- name: Lint
run: |
source .env/bin/activate
make lint
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
mkdir $HOME/.aws/
wget https://gist.githubusercontent.com/Vaishaal/f109bfab6a194a93040ae2a19b6be251/raw/d6caf98a52f6889981d5fbd1707edd815b834161/dummy_creds -O $HOME/.aws/credentials
sudo apt-get update
python3 -m venv .env
source .env/bin/activate
make install
make install-dev
- name: Unit tests
run: |
source .env/bin/activate
make test