Skip to content

Just a test of Github actions #4

Just a test of Github actions

Just a test of Github actions #4

Workflow file for this run

name: 'Just a test of Github actions'
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
windows:
runs-on: windows-latest
env:
REBOL_MODULES_DIR: ${{ github.RUNNER_TEMP }}/modules/
steps:
- name: Info
shell: bash
run: |
echo "Temp: $RUNNER_TEMP Test: $REBOL_MODULES_DIR"
linux:
runs-on: ubuntu-20.04
env:
REBOL_MODULES_DIR: ${{ github.RUNNER_TEMP }}/modules/
steps:
- name: Info
run: |
echo "Temp: $RUNNER_TEMP Test: $REBOL_MODULES_DIR"
macos:
runs-on: macos-latest
env:
REBOL_MODULES_DIR: ${{ github.RUNNER_TEMP }}/modules/
steps:
- name: Info
run: |
echo "Temp: $RUNNER_TEMP Test: $REBOL_MODULES_DIR"