Skip to content

Commit 7a99fac

Browse files
authored
51 add downgrade ci (#52)
* Add Downgrade CI * Bump patch version * Set JSOn to 0.21.4 * Set exact versions with leading zeroes * Set Mocking to exact version * Expand Downgrade CI
1 parent f970cc6 commit 7a99fac

2 files changed

Lines changed: 43 additions & 6 deletions

File tree

.github/workflows/Downgrade.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Downgrade_CI
2+
3+
on:
4+
pull_request:
5+
branches: ["main"]
6+
push:
7+
branches: ["main"]
8+
9+
env:
10+
KEY_AV: ${{ secrets.KEY_AV }}
11+
KEY_CG: ${{ secrets.KEY_CG }}
12+
13+
jobs:
14+
test:
15+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16+
runs-on: ${{ matrix.os }}
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
version:
21+
- '1.10'
22+
- '1.9'
23+
os:
24+
- ubuntu-latest
25+
- macOS-latest
26+
arch:
27+
- x64
28+
steps:
29+
- uses: actions/checkout@v4
30+
- uses: julia-actions/setup-julia@v1
31+
with:
32+
version: ${{ matrix.version }}
33+
- uses: cjdoris/julia-downgrade-compat-action@v1
34+
with:
35+
skip: Pkg, TOML
36+
- uses: julia-actions/julia-buildpkg@v1
37+
- uses: julia-actions/julia-runtest@v1

Project.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "CryptoDashApp"
22
uuid = "8f55a569-a1ee-45d2-b761-b2b316ddd8e9"
33
authors = ["Vikas Negi <vikas.negi10@gmail.com>"]
4-
version = "0.6.1"
4+
version = "0.6.2"
55

66
[deps]
77
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
@@ -17,13 +17,13 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1717
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1818

1919
[compat]
20-
CSV = "0.10"
20+
CSV = "0.10.12"
2121
Dash = "1.5"
2222
DataFrames = "1.6"
2323
GLM = "1.9"
2424
HTTP = "1.10"
25-
JSON = "0.21"
26-
Mocking = "0.7"
27-
PlotlyJS = "0.18"
28-
StatsBase = "0.34"
25+
JSON = "0.21.4"
26+
Mocking = "0.7.7"
27+
PlotlyJS = "0.18.12"
28+
StatsBase = "0.34.2"
2929
julia = "1.8"

0 commit comments

Comments
 (0)