gnu-octave / symbolic

A Symbolic Package for Octave using SymPy
https://octave.sourceforge.io/symbolic/
GNU General Public License v3.0
154 stars 36 forks source link

Codespell: trying to get CI running #1301

Closed cbm755 closed 4 months ago

cbm755 commented 4 months ago

Not sure I'm a fan of GitHub Actions: on GitLab I would just script precisely what I want to happen. Here, I have no idea what "PWD" is, where to put the support files etc... :(

cbm755 commented 4 months ago

Got it! the issue is you must also use the checkout action, like this:

  codespell:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: codespell-project/actions-codespell@v2
        with:

Shall MWPS!