ignor playground update #61
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: Run Assignement 01.02 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-octave: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Octave | |
run: sudo apt-get update && sudo apt-get install -y octave | |
- name: List files | |
run: ls | |
- name: Run Octave script | |
run: octave --silent testing_actions.m |