forked from JuliaGPU/GPUArrays.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 994 Bytes
/
CompatHelper.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: CompatHelper
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Julia compatibility
id: julia_compat
# NOTE: this requires a Julia compat lower-bound with minor version!
run : |
version=$(grep '^julia = ' Project.toml | grep -o '".*"' | cut -d '"' -f2)
echo "::set-output name=version::$version"
- uses: julia-actions/setup-julia@v2
with:
version: ${{ steps.julia_compat.outputs.version }}
- name: Install CompatHelper
run: |
import Pkg
name = "CompatHelper"
version = "3"
Pkg.add(; name, version)
shell: julia --color=yes {0}
- name: Run CompatHelper
run: |
using CompatHelper
CompatHelper.main()
shell: julia --color=yes {0}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}