mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-12 11:06:53 +08:00
* Make test builds more verbose * Handle install directories using tool-cache * Bump version to 1.3.0-DEV
38 lines
801 B
YAML
38 lines
801 B
YAML
name: Example builds (nightly)
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '37 17 * * *'
|
|
|
|
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: "Install dependencies"
|
|
run: |
|
|
npm install
|
|
npm run build
|
|
npm run pack
|
|
|
|
- name: "Set up Julia (nightly)"
|
|
uses: ./
|
|
with:
|
|
version: nightly
|
|
arch: ${{ matrix.julia-arch }}
|
|
show-versioninfo: 'true'
|
|
- run: julia --version
|