Skip to content

add lower bowling alley leave with temp blue strat #3857

add lower bowling alley leave with temp blue strat

add lower bowling alley leave with temp blue strat #3857

Workflow file for this run

# workflow name
name: "Sanity Checks"
# fire on
on: [push, pull_request]
#########
# actions
#########
# actions/[email protected]
# actions/[email protected]
# actions/[email protected]
# vg-json-data/sm-json-data/test
jobs:
# Test
test:
name: 🧮
runs-on: ${{ matrix.os-name }}
strategy:
matrix:
os-name: [
ubuntu-latest
]
python-version: [
"3.10"
]
steps:
# checkout commit
- name: ✔️Checkout commit
uses: actions/[email protected]
# install python
- name: 💿Install Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
# python version
- name: 🐍Python Version
shell: bash
run: |
python --version
# python modules
- name: 🐍Python Modules
shell: bash
run: |
python -m pip install -r "./resources/app/manifests/pip_requirements.txt"
# Analyze used GitHub Actions
- name: Analyze used GitHub Actions
shell: bash
run: |
python ./resources/ci/common/list_actions.py
# test
- name: ⏱️Call Test
uses: ./.github/actions/test
# upload keywords file
- name: Upload Keywords file
uses: actions/[email protected]
with:
name: keywords
path: ./resources/app/manifests/keywords.json
if: ${{ success() || failure() }}