Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.13
- name: Poetry cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cache/pypoetry
key: poetry-cache-${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }}
- name: Pip cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-cache-${{ runner.os }}-${{ hashFiles('.github/workflows/*.yml') }}
- name: Install dependencies
run: |
python -m pip install poetry
poetry install -E ghp-compiled
poetry install -E ghp-compiled --no-root
- name: Compile the courses
run: |
poetry run python -m naucse_render compile _compiled \
Expand Down
25 changes: 25 additions & 0 deletions courses/gitworking.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
title: Gitworking
subtitle: Celodenní git workshop pro úplné začátečníky
description: Git pro začátečnice a začátečníky, základní znalost Pythonu výhodou
long_description: |
Umíš základy Pythonu (například ze začátečnického kurzu PyLadies), ale chceš se přiučit něco o gitu?

Tento workshop je pro všechny, kteří jsou pokročilejší začátečníci – umí pracovat s příkazovou řádkou zhruba na úrovni absolventek začátečnického kurzu PyLadies, vědí, jak fungují soubory na počítači a že se do nich píše zdrojový kód.

Budeme používat Python, ale o programování tolik nepůjde.
plan:
- title: Git
slug: git
materials:
- lesson: git/install
- lesson: git/basics
- lesson: git/branching
- lesson: git/collaboration
- lesson: git/ignoring
- lesson: beginners/cmdline
type: link
- title: Tahák na git
url: https://pyvec.github.io/cheatsheets/basic-git/basic-git-cs.pdf
vars:
coach-present: true
use-gender: f
Loading