add test2 #3
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: Check Keys | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
check_keys_sh: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: install fastd | |
run: sudo apt install -y fastd | |
- name: run .check.sh | |
run: ./.check.sh | |
check_keys_py: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: install python3 | |
run: sudo apt install -y python3-minimal | |
- name: run .check.py | |
run: ./.check.py |