Add an integration test, which accesses the KG rather than using mock… #136
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mirror to EBRAINS | |
on: | |
push: | |
branches: | |
- master | |
- development | |
jobs: | |
to_ebrains: | |
runs-on: ubuntu-latest | |
steps: | |
- name: syncmaster | |
uses: wei/git-sync@v3 | |
with: | |
source_repo: "HumanBrainProject/neural-activity-resource" | |
source_branch: "master" | |
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_GITLAB_ACCESS_TOKEN }}@gitlab.ebrains.eu/data-services/neural-activity-resource.git" | |
destination_branch: "main" | |
- name: syncdev | |
uses: wei/git-sync@v3 | |
with: | |
source_repo: "HumanBrainProject/neural-activity-resource" | |
source_branch: "development" | |
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_GITLAB_ACCESS_TOKEN }}@gitlab.ebrains.eu/data-services/neural-activity-resource.git" | |
destination_branch: "development" | |
- name: synctags | |
uses: wei/git-sync@v3 | |
with: | |
source_repo: "HumanBrainProject/neural-activity-resource" | |
source_branch: "refs/tags/*" | |
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_GITLAB_ACCESS_TOKEN }}@gitlab.ebrains.eu/data-services/neural-activity-resource.git" | |
destination_branch: "refs/tags/*" |