work template #27
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: Template check | |
on: | |
push: | |
jobs: | |
validate-default-instance: | |
runs-on: ubuntu-latest | |
container: python:3.11 | |
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_gh.yaml | |
- name: Set safe directory | |
run: | | |
git config --global --add safe.directory /__w/ds-template/ds-template | |
ls | |
- name: Prepare git1 | |
working-directory: ./ds-gh-default | |
run: | | |
git config --global init.defaultBranch main | |
- name: Prepare git2 | |
working-directory: ./ds-gh-default | |
run: git init | |
- name: Prepare git3 | |
working-directory: ./ds-gh-default | |
run: git config -l | grep 'http\..*\.extraheader' | cut -d= -f1 | xargs -L1 git config --unset-all | |
- name: Prepare git4 | |
working-directory: ./ds-gh-default | |
run: git remote add origin [email protected]:karllu3/ds-lk-default.git | |
- name: Prepare git5 | |
working-directory: ./ds-gh-default | |
run: git add . | |
- name: Validate package build | |
working-directory: ./ds-gh-default | |
run: | | |
python -m pip install . | |
- name: Install pre-commit | |
run: pip3 install pre-commit | |
- name: Run pre-commit checks | |
working-directory: ./ds-gh-default | |
run: pre-commit run --all-files --show-diff-on-failure --color always | |
- name: Push repo | |
working-directory: ./ds-gh-default | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "lukasz karlowski" | |
git checkout -b ds-default-check | |
git commit -m "Repo after creation" | |
git push --set-upstream origin ds-default-check | |