Skip to content

Commit

Permalink
workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
karllu3 committed Jul 26, 2024
1 parent f811a09 commit 0abd60c
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
File renamed without changes.
73 changes: 73 additions & 0 deletions .github/workflows/template_update_gl.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: Template check

on:
push:

jobs:

validate-default-instance:
runs-on: ubuntu-latest
container: python:3.11
permissions:
contents: read
pages: write

steps:
- uses: actions/checkout@v4

- name: Cache Dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Dependencies
run: pip install -r requirements.txt

- name: Create Github project instance
run: cookiecutter . --no-input --config-file cookiecutter_default_gl.yaml


- name: Remote checkout
run: git clone [email protected]:lukasz.karlowski/ds-lk-default.git ds-gl-default2

- name: Set safe directory
run: |
git config --global --add safe.directory /__w/ds-template/ds-template
- name: cp repo
run:
cp -r ds-gl-default/. ds-gl-default2

- name: ls repo
run:
ls -al ds-gl-default2

- name: Prepare git5
working-directory: ./ds-gl-default2
run: |
git config --global user.email "[email protected]"
git config --global user.name "lukasz karlowski"
git checkout -b ds-default-check
git add .
- name: Validate package build
working-directory: ./ds-gl-default2
run: |
python -m pip install .
- name: Install pre-commit
run: pip3 install pre-commit

- name: Run pre-commit checks
working-directory: ./ds-gl-default2
run: pre-commit run --all-files --show-diff-on-failure --color always

- name: Push repo
working-directory: ./ds-gl-default2
run: |
git commit -m "Repo after creation"
git push --set-upstream origin ds-default-check

0 comments on commit 0abd60c

Please sign in to comment.