Create SNU_2D_ProgrammingTools_REPOLIST_V271.urll #2058
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: Rebol workflow | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - id: download-rebol | |
| name: Downloading Rebol | |
| uses: ./ | |
| - name: Test Rebol | |
| env: | |
| REBOL3: ${{ steps.download-rebol.outputs.REBOL3 }} | |
| run: $REBOL3 -v | |
| shell: bash |