You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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'# 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
23
21
arch:
24
22
- x64
25
-
26
23
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
28
25
# have finished
29
26
- 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
31
28
with:
32
29
access_token: ${{ github.token }}
33
-
30
+
34
31
# Do tests
35
32
- uses: actions/checkout@v2
36
33
- uses: julia-actions/setup-julia@v1
37
34
with:
38
35
version: ${{ matrix.version }}
39
36
arch: ${{ matrix.arch }}
40
-
- uses: actions/cache@v1
37
+
- uses: actions/cache@v4
41
38
env:
42
39
cache-name: cache-artifacts
43
40
with:
@@ -48,9 +45,9 @@ jobs:
48
45
${{ runner.os }}-test-
49
46
${{ runner.os }}-
50
47
- uses: julia-actions/julia-buildpkg@v1
48
+
51
49
- uses: julia-actions/julia-runtest@v1
52
50
- uses: julia-actions/julia-processcoverage@v1
53
-
- uses: codecov/codecov-action@v4
51
+
- uses: codecov/codecov-action@v1
54
52
with:
55
-
token: ${{ secrets.CODECOV_TOKEN }}
56
-
fail_ci_if_error: false # or true if you want CI to fail when Codecov fails
0 commit comments