z6 test #16
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: CI | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
job1: | |
runs-on: ubuntu-latest | |
steps: | |
- name: get repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: get path of main.py | |
run: echo "path_of_main_py=$(git diff --name-only HEAD~1 HEAD | grep '/main.py')" | |
- name: print path_of_main_py | |
run: echo "${{ env.path_of_main_py }}" |