fix link #3904
Workflow file for this run
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
# 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() }} |