From cf4fc3fc874d9d49ed3b9e2663f0ccaf837d5a5e Mon Sep 17 00:00:00 2001 From: "@jmmshn" Date: Thu, 22 Feb 2024 15:02:40 -0800 Subject: [PATCH] depend --- .github/workflows/testing.yml | 30 ++---------------------------- 1 file changed, 2 insertions(+), 28 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index f7f76a3..c224e28 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -2,46 +2,20 @@ on: push: branches: - main - tags: - 'v*' - pull_request: branches: - main - - jobs: - - paper: - runs-on: ubuntu-latest - name: Paper Draft - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Build draft PDF - uses: openjournals/openjournals-draft-action@master - with: - journal: joss - # This should be the path to the paper within your repo. - paper-path: paper/paper.md - - name: Upload - uses: actions/upload-artifact@v1 - with: - name: paper - # This is the output path where Pandoc will write the compiled - # PDF. Note, this should be the same directory as the input - # paper.md - path: paper/paper.pdf lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.11 - name: Install dependencies run: | @@ -58,7 +32,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ 3.8, 3.9 ] + python-version: [ 3.9, 3.10, 3.11 ] steps: - uses: actions/checkout@v2.3.4