Skip to content

Integration test needs both unit tests and linting. #4

Integration test needs both unit tests and linting.

Integration test needs both unit tests and linting. #4

Workflow file for this run

name: Continuous Integration (Skeleton)
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Run linting
run: sleep 5
test_coverage:
runs-on: ubuntu-latest
steps:
- name: Measuring Test Coverage
run: sleep 7
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Running Unit Tests
run: sleep 9
integration_test:
needs:
- unit_tests
- lint
runs-on: ubuntu-latest
steps:
- name: Running Integration Tests
run: sleep 11