added k10 labs #37
This file contains hidden or 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: Basic Checkout Github Action | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| checkout: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: list files | |
| run: ls -la | |
| - name: check system info | |
| run: | | |
| echo "Repostiory: ${GITHUB_REPOSITORY}" | |
| echo "OS Info: $(lsb_release -a)" | |
| echo "Current Directory: $(pwd)" | |
| - name: show version info | |
| run: | | |
| echo "Node version: $(node -v)" | |
| echo "Python version: $(python3 --version)" | |
| echo "Git Version: $(git -v)" | |