Skip to content

Commit

Permalink
Changes to comply with Registrator.
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelmartinelli committed May 17, 2023
1 parent cdcecdc commit 4fc2ac6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: CI
on:
- push
- pull_request
jobs:
test:
Expand All @@ -10,18 +9,18 @@ jobs:
fail-fast: false
matrix:
version:
- '1'
- '1.6'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
- uses: actions/cache@v3
env:
cache-name: cache-artifacts
with:
Expand All @@ -34,14 +33,14 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3
with:
file: lcov.info
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: '1'
Expand Down
10 changes: 9 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,12 @@ Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
ZipFile = "a5390f91-8eb1-5f08-bee0-b1d1ffed6cea"

[compat]
julia = "1"
Distances = "0.10"
julia = "1.6"
ZipFile = "0.10"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
1 change: 1 addition & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[deps]
FacilityLocationProblems = "3771e204-432d-45a9-9661-5d0025a53671"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

0 comments on commit 4fc2ac6

Please sign in to comment.