This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from EOEPCA/release/v0.9.0
Release/v0.9.0
- Loading branch information
Showing
30 changed files
with
370 additions
and
124 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Login Service BB Workflow | ||
|
||
# Controls when the action will run. | ||
on: push | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
env: | ||
DOCKER_COMPOSE_VERSION: 1.25.4 | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
# Runs a single command using the runners shell | ||
- name: Setup Python 3.6.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.6.9 | ||
# Runs a set of commands using the runners shell | ||
- name: Testing | ||
run: | | ||
sudo apt-get install jq python3-venv | ||
# pip install -r ./src/requirements.txt | ||
# pytest ./tests | ||
# Uncomment below if wanted Dockerhub Publication | ||
# - name: Container Creation and Publishing | ||
# run: ./gh_actions/setupCluster.sh | ||
# - name: Release Container | ||
# if: github.ref == 'refs/heads/master' && github.event != 'pull_request' | ||
# run: ./gh_actions/release.sh um-license-manager | ||
|
||
|
||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Login Service Documentation | ||
|
||
# Controls when the action will run. | ||
on: push | ||
# Triggers the workflow on push or pull request events but only for the develop branch | ||
|
||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
env: | ||
GH_USER_NAME: ${{ secrets.GH_USER_NAME }} | ||
GH_USER_EMAIL: ${{ secrets.GH_USER_EMAIL }} | ||
GH_REPOS_NAME: ${{ secrets.GH_REPOS_NAME }} | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
# Runs a set of commands using the runners shell | ||
- name: Generate the docs | ||
run: ./docs/bin/generate-docs.sh | ||
- name: Publish the docs | ||
run: ./docs/bin/publish-docs.sh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Login Service Test Workflow | ||
|
||
# Controls when the action will run. | ||
on: push | ||
# Triggers the workflow on push or pull request events but only for the develop branch | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# Set the job key. The key is displayed as the job name | ||
# when a job name is not provided | ||
prepare-system: | ||
# Name the Job | ||
name: Prepare system to run tests | ||
# Set the type of machine to run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks out a copy of your repository on the ubuntu-latest machine | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Setup Python 3.6.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.6.9 | ||
- name: Install ubuntu dependencies | ||
run: sudo apt-get install jq python3-venv | ||
- name: Change to main folder | ||
run: cd .. | ||
- name: Create python env | ||
run: python3 -m venv env | ||
- name: Activate environment | ||
run: | | ||
source env/bin/activate | ||
# - name: Run main | ||
# run: python src/main.py | ||
# - name: Run tests | ||
# run: python tests/sum_test.py |
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.