joakimbits is testing 🚀 #168
This file contains 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.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- run: echo "." >> $GITHUB_PATH | |
- run: make venv | |
- run: make syntax | |
- run: make style | |
- run: make | |
- run: make tested | |
- 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/report | |
- run: make example/gfm | |
- run: make report | |
- 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: ( cd template && make && ls ) | |
- run: ( cd template && make clean && ls ) | |
- run: echo "🍏 This job's status is ${{ job.status }}." |