joakimbits is testing 🚀 #229
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: Test python code | |
| run-name: ${{ github.actor }} is testing 🚀 | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "🎉 A test job was automatically triggered by a ${{ github.event_name }} event." | |
| - run: echo "🐧 It runs on an ${{ runner.os }} server hosted by GitHub." | |
| - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
| - name: Check out repository code and its history | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - run: echo "💡 The ${{ github.repository }} repository has been cloned to ${{ github.workspace }} on the runner." | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.9' | |
| - run: echo "." >> $GITHUB_PATH | |
| - run: make make help # Bootstrap all projects and obtain help on them | |
| - run: make example/help | |
| - run: make example/venv | |
| - run: make example/syntax | |
| - run: make example/style | |
| - run: make example/bringup | |
| - run: ( cd example && greeter.py ) | |
| - run: make example/tested | |
| - run: make example/result | |
| - run: make example/gfm | |
| - run: make result | |
| - run: make old # Building last release | |
| - run: make old # Just printing last release | |
| - run: make new | |
| - run: make new | |
| - run: make review | |
| - run: make review | |
| - run: make prompt | |
| - run: make prompt | |
| - run: make audit | |
| - run: make clean && make audit | |
| - run: echo "🍏 This job's status is ${{ job.status }}." |