mach-nix/.github/workflows/CI_NixPy.yml
2020-10-20 16:22:12 +07:00

61 lines
1.7 KiB
YAML

name: "mach-nix CI"
on:
pull_request:
branches: ["master"]
push:
branches: [master, test-ci]
jobs:
testSuite:
name: Test on Python${{ matrix.python-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 5
matrix:
os: [ubuntu-latest, macos-10.14, ]
python-version: [3.7]
## tasks per matrix element
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install/Setup - PYTHON
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install/Setup - NIX
uses: cachix/install-nix-action@v11
with:
nix_path: nixpkgs=channel:nixos-unstable
#install_url: https://github.com/numtide/nix-flakes-installer/releases/download/nix-3.0pre20201007_5257a25/install
# extra_nix_config: |
# experimental-features = nix-command flakes
- name: PYTHON - Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
- name: PYTHON - Lint (with flake8) over project files
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: NIX PY - Build + pytest
run: nix-env -if . -A mach-nix
shell: bash
# # run nix tests
# - name: Build some python environments
# run: |
# nix --version
# cd tests
# nix-build test_*.nix
# shell: bash