github action adv: matrix strategy #11
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: Hello | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| greet: | |
| runs-on: ubuntu:latest | |
| steps: | |
| - name: say hello to users | |
| run: echo "Hello Dosto" | |
| - name: say hello to user names | |
| run: echo "Hello to $USER" | |
| details: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: shows the version of python and docker. | |
| run: docker --version && python --version |