feat: add toast notifications and update README #15
This file contains hidden or 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: Hello World Test | |
| # Dieser Workflow läuft bei jedem Push auf main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| hello: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Say Hello | |
| run: | | |
| echo "🎉 Hello from GitHub Actions!" | |
| echo "Repo: ${{ github.repository }}" | |
| echo "Branch: ${{ github.ref }}" | |
| echo "Commit: ${{ github.sha }}" |