Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lindamyhrman committed Aug 8, 2024
0 parents commit 528add9
Show file tree
Hide file tree
Showing 13 changed files with 5,186 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
29 changes: 29 additions & 0 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This is autogenerated - do not touch!
name: Pull Request Checks
on:
pull_request:

jobs:
python:
strategy:
matrix:
python_test_os: [ ubuntu-latest ]
python-version: [ 3.11 ]
poetry-version: [ 1.3.2 ]
uses: lundalogik/lime-workflows/.github/workflows/pr-checks-python.yml@v3
secrets: inherit
with:
python_test_os: ${{ matrix.python_test_os }}
test_python_version: ${{ matrix.python-version }}
poetry_version: ${{ matrix.poetry-version }}

ci:
uses: lundalogik/lime-workflows/.github/workflows/pr-checks.yml@v3
secrets: inherit
with:
frontend_test_os: ubuntu-latest

automerge:
uses: lundalogik/lime-workflows/.github/workflows/automerge.yml@v3
secrets: inherit
needs: [ python, ci ]
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This is autogenerated - do not touch!
name: Release
on:
push:
branches:
- main
- master
- "*[0-9].*[0-9].x"
- "*[0-9].x.x"
- dev
- pre
- alpha
- beta

jobs:
release:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ 3.11 ]
poetry-version: [ 1.3.2 ]
uses: lundalogik/lime-workflows/.github/workflows/release-solution-limecloud.yml@v3
secrets: inherit
with:
os: ${{ matrix.os }}
python_version: ${{ matrix.python-version }}
poetry_version: ${{ matrix.poetry-version }}
15 changes: 15 additions & 0 deletions .github/workflows/update-workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This is auto-generated - do not touch!
name: Update Workflows

on:
repository_dispatch:
types: [update-workflow]
workflow_dispatch:

jobs:
upgrade:
uses: lundalogik/lime-workflows/.github/workflows/update-workflows.yml@v3
secrets: inherit
with:
os: ubuntu-latest
python_version: 3.11
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
*.egg*
tags
venv
.venv
build/
dist/
__pycache__
**/*.pyc
**/.idea
.pytest_cache/
docker-compose.override.yml
.stencil/
node_modules
.htmlcov
pip-wheel-metadata
.vscode
.coverage
.lime
.env
*.bak
celerybeat*.*
ldc.reg
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# solution-reunion-2024-github

Loading

0 comments on commit 528add9

Please sign in to comment.