Skip to content

Updated CMs (and metadata) for F01 and F04 #102

Updated CMs (and metadata) for F01 and F04

Updated CMs (and metadata) for F01 and F04 #102

Workflow file for this run

name: Tests
on:
push:
branches: [ feature/* , main , release/* ]
pull_request:
branches: [ main ]
jobs:
build:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libssl-dev libcurl4-openssl-dev
python -m pip install --upgrade setuptools pip wheel
make install-dev
- name: Run Tests
run: make test