feat: menambahkan materi advance file (#31) #69
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: github action shell | |
on: [push] | |
jobs: | |
test-shell-scripting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: cek kode repositori | |
uses: actions/checkout@v2 | |
- run: echo "selamat datang di bellshade shell scripting" | |
- run: echo "jalan pada ${{ runner.os }}" | |
- name: list dari direktori shell scripting | |
run: | | |
ls ${{ github.workspace }} | |
chmod +x test.sh | |
sh ./test.sh | |
- run: echo "status ${{ job.status }}" |