Skip to content

Commit 9f895b0

Browse files
authored
Merge pull request #4 from devmotion/datastructures
Clean dependencies and add CompatHelper
2 parents df49979 + 2c7674e commit 9f895b0

2 files changed

Lines changed: 17 additions & 5 deletions

File tree

.github/workflows/CompatHelper.yml

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

Project.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
name = "NameResolution"
22
uuid = "71a1bf82-56d0-4bbc-8a3c-48b961074391"
33
authors = ["thautwarm"]
4-
version = "0.1.4"
4+
version = "0.1.5"
55

66
[deps]
7-
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
87
PrettyPrint = "8162dcfd-2161-5ef2-ae6c-7681170c5f98"
98

109
[compat]
11-
DataStructures = "^0.17"
1210
PrettyPrint = "^0.2.0"
1311
julia = "1"
1412

1513
[extras]
16-
PrettyPrint = "8162dcfd-2161-5ef2-ae6c-7681170c5f98"
1714
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1815

1916
[targets]
20-
test = ["Test", "PrettyPrint"]
17+
test = ["Test"]

0 commit comments

Comments
 (0)