Intermediate GitHub Concepts
Arne Jonas Warnke
Content Lead for ML- and Data Engineering at DataCamp
GitHub Actions:
Insights:
Built-in Automations:
GitHub Actions:
name: Data Workflow
on: [push]
jobs:
run-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run analysis
run: python analyze_data.py
Intermediate GitHub Concepts