Skip to content

Just a test of Github actions #2

Just a test of Github actions

Just a test of Github actions #2

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:
env:
REBOL_MODULES_DIR: ${{ github.runner_temp }}/modules/
jobs:
windows:
runs-on: windows-latest
steps:
- name: Info
shell: bash
run: |
echo "Temp: $RUNNER_TEMP Test: $REBOL_MODULES_DIR"
linux:
runs-on: ubuntu-20.04
steps:
- name: Info
run: |
echo "Temp: $RUNNER_TEMP Test: $REBOL_MODULES_DIR"
macos:
runs-on: macos-latest
steps:
- name: Info
run: |
echo "Temp: $RUNNER_TEMP Test: $REBOL_MODULES_DIR"