Skip to content

Commit 83dddd3

Browse files
authored
Merge pull request #5 from oschulz/project-toml
Add Project.toml and GitHub workflows
2 parents 6b7800d + 49e0b69 commit 83dddd3

File tree

5 files changed

+54
-3
lines changed

5 files changed

+54
-3
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CompatHelper
2+
3+
on:
4+
schedule:
5+
- cron: '00 00 * * *'
6+
issues:
7+
types: [opened, reopened]
8+
push:
9+
branches:
10+
- actions/trigger/CompatHelper
11+
12+
jobs:
13+
CompatHelper:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: julia-actions/setup-julia@latest
17+
with:
18+
version: 1.4
19+
- name: Pkg.add("CompatHelper")
20+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
21+
- name: CompatHelper.main()
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/TagBot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: TagBot
2+
on:
3+
schedule:
4+
- cron: 0 * * * *
5+
jobs:
6+
TagBot:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: JuliaRegistries/TagBot@v1
10+
with:
11+
token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.jl.cov
22
*.jl.*.cov
33
*.jl.mem
4+
Manifest.toml

Project.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name = "AdaptiveRejectionSampling"
2+
uuid = "c75e803d-635f-53bd-ab7d-544e482d8c75"
3+
version = "0.1.0"
4+
5+
[deps]
6+
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
7+
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
8+
9+
[compat]
10+
ForwardDiff = "0.10.1"
11+
StatsBase = "0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33"
12+
julia = "1"
13+
14+
[extras]
15+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
16+
17+
[targets]
18+
test = ["Test"]

REQUIRE

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)