Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dippindots committed Aug 9, 2023
1 parent 54b75ae commit bdb84fd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 23 deletions.
23 changes: 0 additions & 23 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,6 @@
#
version: 2
jobs:

# Job to validate only the changed studies
build:
docker:
- image: circleci/python:3.6
resource_class: large
working_directory: ~/repo/
steps:
- checkout
- run:
name: Validate changed studies
command: |
cd ~/repo/.circleci
./install_dependencies.sh
./validate_changed_studies.sh
no_output_timeout: 2h
- store_artifacts:
path: ~/test-reports
destination: ~/test-reports

# Job to validate all studies
validate_all_studies:
Expand Down Expand Up @@ -92,10 +73,6 @@ workflows:
# is merged into the master branch.
workflow_on_commit:
jobs:
- build:
filters:
branches:
ignore: master
- validate_changed_seed:
filters:
branches:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/validate_changed_studies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Validate Changed Studies

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

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

- name: Validate changed studies
run: |
cd .circleci
./install_dependencies.sh
./validate_changed_studies.sh

0 comments on commit bdb84fd

Please sign in to comment.