Skip to content

Instantly share code, notes, and snippets.

@paopa
Created August 29, 2021 11:50
Show Gist options
  • Save paopa/9f743eedfc874ad98eb01063cd1f380b to your computer and use it in GitHub Desktop.
Save paopa/9f743eedfc874ad98eb01063cd1f380b to your computer and use it in GitHub Desktop.
Markdium-GitHub Actions: concepts and getting started
jobs:
push-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test
run: |
echo "Hello GitHub Actions"
pwd
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment