Skip to content

Commit a8d40a6

Browse files
Merge pull request #13 from AtelierArith/update-readme-and-add-compathelper
Update README and add CompatHelper workflow
2 parents 13adf4b + 542adc1 commit a8d40a6

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
pull-requests: write
11+
contents: write
12+
steps:
13+
- name: Pkg.add("CompatHelper")
14+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
15+
- name: CompatHelper.main()
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
19+
run: julia -e 'using CompatHelper; CompatHelper.main()'

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ RustToolChain.jl is a Julia package that provides Rust toolchains (especially `c
2020
## Installation
2121

2222
```julia
23-
using Pkg
24-
Pkg.add(url="https://github.com/AtelierArith/RustToolChain.jl.git")
23+
using Pkg; Pkg.add("RustToolChain")
2524
```
2625

2726
## Usage

0 commit comments

Comments
 (0)