From 2dbd79555c36c7e78eb739b1034e981b9af59662 Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Sun, 11 Feb 2024 20:48:53 +0100 Subject: [PATCH] Automated commit made by MassInstallAction.jl --- .github/workflows/DowngradeCI.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/DowngradeCI.yml diff --git a/.github/workflows/DowngradeCI.yml b/.github/workflows/DowngradeCI.yml new file mode 100644 index 00000000..0b2b58c0 --- /dev/null +++ b/.github/workflows/DowngradeCI.yml @@ -0,0 +1,22 @@ +name: DowngradeCI +on: + pull_request: + branches: + - main + push: + branches: + - main +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 + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1