diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2274f07084..3a0d9fa9c1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -9,6 +9,7 @@ on: - '*/*-runci' tags: '*' pull_request: + workflow_dispatch: jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} @@ -201,3 +202,25 @@ jobs: - uses: actionsx/prettier@v2 with: args: --check . + + runic: + name: "Runic (Julia code formatting)" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 + with: + version: '1.11' + - uses: julia-actions/cache@v2 + - uses: fredrikekre/runic-action@v1 + with: + version: '1.0.0' + + typos: + name: Spell Check with Typos + runs-on: ubuntu-latest + steps: + - name: Checkout Actions Repository + uses: actions/checkout@v4 + - name: Check spelling + uses: crate-ci/typos@master diff --git a/.github/workflows/Runic.yml b/.github/workflows/Runic.yml deleted file mode 100644 index 84660df440..0000000000 --- a/.github/workflows/Runic.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Runic -on: - push: - branches: - - 'master' - - 'release-' - tags: - - '*' - pull_request: -jobs: - runic: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v2 - with: - version: '1.11' - - uses: julia-actions/cache@v2 - - uses: fredrikekre/runic-action@v1 - with: - version: '35d6dd44ca8704f329319c83a2209875db2ede06' diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml deleted file mode 100644 index c344f6dda5..0000000000 --- a/.github/workflows/SpellCheck.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Spell Check - -on: [pull_request] - -jobs: - typos-check: - name: Spell Check with Typos - runs-on: ubuntu-latest - steps: - - name: Checkout Actions Repository - uses: actions/checkout@v4 - - name: Check spelling - uses: crate-ci/typos@master