From d15e3e538fd561e128f189601c7e3232515e5a19 Mon Sep 17 00:00:00 2001 From: vavrines Date: Mon, 1 Jul 2024 17:14:12 +0800 Subject: [PATCH] Add compatibility helper --- .github/workflows/compat.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/compat.yml diff --git a/.github/workflows/compat.yml b/.github/workflows/compat.yml new file mode 100644 index 0000000..d7cef78 --- /dev/null +++ b/.github/workflows/compat.yml @@ -0,0 +1,16 @@ +name: CompatHelper + +on: + schedule: + - cron: '00 00 * * *' + +jobs: + CompatHelper: + runs-on: ubuntu-latest + steps: + - name: Pkg.add("CompatHelper") + run: julia -e 'using Pkg; Pkg.add("CompatHelper")' + - name: CompatHelper.main() + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: julia -e 'using CompatHelper; CompatHelper.main()' \ No newline at end of file