This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
Add Gitlab CI (#1) #12
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 run unit tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install | |
run: | | |
pip3 install git+https://github.com/NASA-AMMOS/anms-ace.git | |
pip3 install -e '.[test]' | |
- name: Test | |
run: python3 -m pytest -v --cov=camp tests | |
flake8: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install | |
run: | | |
pip3 install git+https://github.com/NASA-AMMOS/anms-ace.git | |
pip3 install -e '.[flake8]' | |
- name: Run flake8 | |
run: | | |
FAIL_SRC=0 | |
flake8 src || FAIL_SRC=$? |