Skip to content

Commit 4e47f7a

Browse files
remove StyledStrings as a dependency since it is not used (#397)
* remove StyledStrings as a dependency since it is not used * bump patch version * Update ci.yml --------- Co-authored-by: George Datseris <datseris.george@gmail.com>
1 parent 53260d6 commit 4e47f7a

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ on:
33
pull_request:
44
branches:
55
- main
6-
- '**'
6+
- '**' # matches every branch
77
push:
88
branches:
99
- main
1010
tags: '*'
11-
1211
jobs:
1312
test:
1413
name: Tests, Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -17,27 +16,25 @@ jobs:
1716
fail-fast: false
1817
matrix:
1918
version:
20-
- '1' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
21-
os:
22-
- ubuntu-latest
19+
- '1'
20+
os: [ubuntu-latest] # adjust according to need, e.g. os: [ubuntu-latest] if testing only on linux
2321
arch:
2422
- x64
25-
2623
steps:
27-
# Cancel ongoing CI test runs if pushing to branch again before the previous tests
24+
# Cancel ongoing CI test runs if pushing to branch again before the previous tests
2825
# have finished
2926
- name: Cancel ongoing test runs for previous commits
30-
uses: styfle/cancel-workflow-action@0.6.0
27+
uses: styfle/cancel-workflow-action@0.12.0
3128
with:
3229
access_token: ${{ github.token }}
33-
30+
3431
# Do tests
3532
- uses: actions/checkout@v2
3633
- uses: julia-actions/setup-julia@v1
3734
with:
3835
version: ${{ matrix.version }}
3936
arch: ${{ matrix.arch }}
40-
- uses: actions/cache@v1
37+
- uses: actions/cache@v4
4138
env:
4239
cache-name: cache-artifacts
4340
with:
@@ -48,9 +45,9 @@ jobs:
4845
${{ runner.os }}-test-
4946
${{ runner.os }}-
5047
- uses: julia-actions/julia-buildpkg@v1
48+
5149
- uses: julia-actions/julia-runtest@v1
5250
- uses: julia-actions/julia-processcoverage@v1
53-
- uses: codecov/codecov-action@v4
51+
- uses: codecov/codecov-action@v1
5452
with:
55-
token: ${{ secrets.CODECOV_TOKEN }}
56-
fail_ci_if_error: false # or true if you want CI to fail when Codecov fails
53+
file: lcov.info

Project.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "Associations"
22
uuid = "614afb3a-e278-4863-8805-9959372b9ec2"
33
authors = ["Kristian Agasøster Haaga <kahaaga@gmail.com>", "Tor Einar Møller <temolle@gmail.com>", "George Datseris <datseris.george@gmail.com>"]
44
repo = "https://github.com/kahaaga/Associations.jl.git"
5-
version = "4.4.1"
5+
version = "4.4.2"
66

77
[deps]
88
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"
@@ -26,7 +26,6 @@ StateSpaceSets = "40b095a5-5852-4c12-98c7-d43bf788e795"
2626
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2727
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
2828
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
29-
StyledStrings = "f489334b-da3d-4c2e-b8f0-e476e12c162b"
3029
TimeseriesSurrogates = "c804724b-8c18-5caa-8579-6025a0767c70"
3130

3231
[compat]
@@ -49,6 +48,5 @@ StateSpaceSets = "2.1"
4948
StaticArrays = "^1"
5049
Statistics = "1"
5150
StatsBase = "^0.34"
52-
StyledStrings = "1"
5351
TimeseriesSurrogates = "2.7"
5452
julia = "^1.10.6"

0 commit comments

Comments
 (0)