Update Item_NGS_Stamps.txt #1210
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: repo-check | |
on: [push] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
container: ubuntu:20.04 | |
steps: | |
- name: Setting up testing environment | |
run: | | |
/bin/mkdir -p /tmp/PSO2es | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Checking for vaild JSONs | |
run: python ./_py/checkjson.py | /usr/bin/tee /tmp/PSO2es/checkjson.txt | |
- name: Store artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: /tmp/PSO2es/ |