Files
setup-julia/.github/workflows/example-builds-nightly.yml
2020-07-07 13:51:16 +02:00

40 lines
833 B
YAML

name: Example builds (nightly)
on:
push:
pull_request:
schedule:
- cron: '59 * * * *'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-arch: [x64, x86]
os: [ubuntu-latest, macOS-latest, windows-latest]
# 32-bit Julia binaries are not available on macOS
exclude:
- os: macOS-latest
julia-arch: x86
steps:
- uses: actions/checkout@v1.0.0
- name: "Debugging info"
run: curl ifconfig.me
- name: "Install dependencies"
run: |
npm install
npm run build
npm run pack
- name: "Set up Julia (nightly)"
uses: ./
with:
version: nightly
arch: ${{ matrix.julia-arch }}
- run: julia --version