Skip to content

commit and remote swap #8

commit and remote swap

commit and remote swap #8

Workflow file for this run

name: cutting_cookies
on:
push:
pull_request:
jobs:
test_projects:
runs-on: ubuntu-latest
strategy:
matrix:
projects: [bioproject, nfproject, pyproject]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
cache: 'pip'
- name: install_cookiecutter
run: |
pip install cookiecutter
- name: ${ matrix.projects }
run: |
cookiecutter --directory ${{ matrix.projects }} . --no-input
- name: run_bioproject
if: matrix.projects == 'bioproject'
run: |
python another_project/run.py
test -f README.txt || (echo "README.txt not created." && exit 1)