Skip to content

Add tests and linting #2

Add tests and linting

Add tests and linting #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
- main
jobs:
prepare:
name: Run tests and linting
runs-on: ubuntu-latest
steps:
- name: Checkout PayGate
uses: actions/checkout@v4
with:
# Relative path to place the repository
path: ecommerce-plugin-paygate
- name: Checkout ecommerce
uses: actions/checkout@v4
with:
# Repository name with owner
repository: fccn/ecommerce
# Change the branch to checkout
ref: nau/nutmeg.master
# Relative path to place the repository
path: ecommerce
- name: Use Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip' # caching pip dependencies
- name: Install ecommerce pip requirements
run: pip install -r ecommerce/requirements/dev.txt
lint:
name: Lint code
runs-on: ubuntu-latest
needs:
- prepare
steps:
- name: Run lint
run: make -C ecommerce-plugin-paygate lint
test:
name: Unit tests
runs-on: ubuntu-latest
needs:
- prepare
steps:
- name: Run unit tests
run: make -C ecommerce-plugin-paygate test