Skip to content

Commit

Permalink
Merge ae45c00 into 031d1f4
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Jan 15, 2020
2 parents 031d1f4 + ae45c00 commit e665af3
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pkg-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: tkf/julia-update-manifests@v1
with:
version: '1.3'
projects: test
projects: test/environments/main

# https://github.com/peter-evans/create-pull-request
# https://github.com/marketplace/actions/create-pull-request
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/vanilla-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run test via Pkg.test()

on:
push:
branches:
- master
paths:
- test/environments/main/Project.toml
pull_request:
paths:
- test/environments/main/Project.toml

jobs:
vanilla-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: 1.3
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ before_install:
- unset JULIA_PROJECT
- julia -e 'using Pkg; pkg"add https://github.com/tkf/Run.jl"'
install:
- julia -e 'using Run; Run.prepare_test()'
- julia -e 'using Run; Run.prepare("test/environments/main")'
script:
- julia -e 'using Run; Run.test()'
- julia -e 'using Run; Run.test(project="test/environments/main")'
after_success:
- julia -e 'using Run; Run.after_success_test()'
jobs:
Expand Down
5 changes: 4 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ version = "0.2.2-DEV"
julia = "1.0"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
BangBang = "198e06fe-97b7-11e9-32a5-e1d131e6ad66"
Setfield = "efcf1570-3423-57d1-acb7-fd33fddbac46"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
test = ["Aqua", "BangBang", "Setfield", "Test"]
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ deps = ["Random"]
uuid = "9fa8497b-333b-5362-9e8d-4d0656e87820"

[[InitialValues]]
path = ".."
path = "../../.."
uuid = "22cec73e-a1b8-11e9-2c92-598750a2cf9c"
version = "0.2.2-DEV"

Expand Down
File renamed without changes.

0 comments on commit e665af3

Please sign in to comment.