Skip to content

Commit

Permalink
.github/workflows/...: first test
Browse files Browse the repository at this point in the history
  • Loading branch information
cknoll committed Oct 30, 2023
1 parent 2bb8acc commit 6c676f5
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: CI

on:
push:
branches:
- main
- develop
- develop_carsten
- develop_julius
pull_request:
branches:
- main
- develop

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.11"

# The following command allows to connect to the ci-container via ssh
# very useful for debugging
# source: https://github.com/marketplace/actions/debugging-with-tmate

# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3

- name: Install pip
run: |
python -m pip install --upgrade pip
- name: get ocse as test data
run: |
mkdir -p erk-data-for-unittests
cd erk-data-for-unittests
echo "PYERK_TEST_DATA_PARENT_PATH=$(pwd)" >> "$GITHUB_ENV"
git clone https://github.com/ackrep-org/ocse/.git
git checkout ut__pyerk__main
- name: debug env
run: |
echo "$PYERK_TEST_DATA_PARENT_PATH"
- name: Installing requirements
run: |
# install this package
pwd
pip install -r requirements.txt
- name: run all tests
run: |
python -m unittest

0 comments on commit 6c676f5

Please sign in to comment.