From b958684be0d8ae4b1e39661eaba38117d500c7e9 Mon Sep 17 00:00:00 2001 From: Tyler Thomas <36181311+tylerjthomas9@users.noreply.github.com> Date: Sun, 11 Feb 2024 12:34:33 -0700 Subject: [PATCH] Create Downgrade.yml --- .github/workflows/Downgrade.yml | 29 +++++++++++++++++++++++++++++ Project.toml | 6 +++--- 2 files changed, 32 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/Downgrade.yml diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml new file mode 100644 index 0000000..5f64aa4 --- /dev/null +++ b/.github/workflows/Downgrade.yml @@ -0,0 +1,29 @@ +name: Downgrade +on: + pull_request: + branches: + - main + paths-ignore: + - 'docs/**' + push: + branches: + - master + paths-ignore: + - 'docs/**' +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + version: ['1'] + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v1 + with: + version: ${{ matrix.version }} + - uses: cjdoris/julia-downgrade-compat-action@v1 + with: + skip: Pkg,TOML + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 + \ No newline at end of file diff --git a/Project.toml b/Project.toml index 723d217..1f178a9 100644 --- a/Project.toml +++ b/Project.toml @@ -19,15 +19,15 @@ MarketData = "945b72a4-3b13-509d-9b46-1525bb5c06de" MarketDataExt = "MarketData" [compat] -Aqua = "0.8" +Aqua = "0.8.4" CSV = "0.10" DataFrames = "1" DataStructures = "0.18" -Dates = "1.6" +Dates = "<0.0.1, 1" MarketData = "0.13" PrecompileTools = "1" Random = "1.6" -Test = "1.6" +Test = "<0.0.1, 1" UUIDs = "1.6" julia = "1.6"