Skip to content

Commit

Permalink
Merge pull request #22 from tylerjthomas9/dev
Browse files Browse the repository at this point in the history
Create downgrade.yml
  • Loading branch information
tylerjthomas9 authored Feb 11, 2024
2 parents 654eaee + eddbba2 commit 4ceedba
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 3 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/downgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ Term = "22787eb5-b846-44ae-b979-8e399b8463ab"
ZipFile = "a5390f91-8eb1-5f08-bee0-b1d1ffed6cea"

[compat]
Aqua = "0.8"
Aqua = "0.8.4"
CSV = "0.9, 0.10"
DataFrames = "1"
Dates = "1"
Dates = "<0.0.1, 1"
HTTP = "1"
Term = "2"
Test = "1"
Test = "<0.0.1, 1"
ZipFile = "0.9, 0.10"
julia = "1.6"

Expand Down

0 comments on commit 4ceedba

Please sign in to comment.