Merge pull request #35 from AymarN/print() #30
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: githubActions with Codeskulptor | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [2.7] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up python ${{ matrix.python-version }} | |
| uses: actions/setup-node@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install CodeSkulptor CLI | |
| run: | | |
| git clone https://github.com/shreyasminocha/csk-cli | |
| cd csk-cli | |
| sudo install ./bin/csk /usr/local/bin/csk | |
| sudo install ./csk.1 /usr/local/share/man/man1/csk.1 | |
| - name: Upload with CodeSkulptor CLI | |
| run: | | |
| csk upload Week8/Spaceship.py spaceship |