Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve test run #687

Merged
merged 3 commits into from
Apr 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI Documentation
name: generate Documentation

on: [push, pull_request]

Expand Down
56 changes: 38 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,57 @@
name: CI
on:
push:
branches: [ main ]
name: run tests

on: [push, pull_request]

env:
DB_NAME: vulnerablecode
DB_USER: vulnerablecode
DB_PASSWORD: vulnerablecode

pull_request:
types: [opened, synchronize]
jobs:
unit_tests:
runs-on: ubuntu-latest
build:
runs-on: ubuntu-20.04

services:
postgres:
image: postgres:latest
env:
POSTGRES_DB: ${{ env.DB_NAME }}
POSTGRES_USER: ${{ env.DB_USER }}
POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }}
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432

strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.9", "3.10"]

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python 3.8.11
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8.11
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
sudo apt-get install -y postgresql python3-dev libpq-dev build-essential
make dev envfile
run: make dev envfile

- name: Validate code format
run: make check

- name: Setup database
run: |
sudo systemctl start postgresql
make postgres

- name: Run tests
run: make test
env:
GH_TOKEN: 1
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432
VULNERABLECODE_DB_NAME: ${{ env.DB_NAME }}
VULNERABLECODE_DB_USER: ${{ env.DB_USER }}
VULNERABLECODE_DB_PASSWORD: ${{ env.DB_PASSWORD }}
6 changes: 2 additions & 4 deletions .github/workflows/test-import-using-nix.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
on:
workflow_dispatch: # allow manual execution
push:
pull_request:
schedule:
# run on the 3rd each month at 10:00am
- cron: '0 10 3 * *'
# run daily at 10:00am
- cron: '0 10 * * *'

jobs:
nix-check-and-import:
Expand Down