Skip to content

Handle better incorrect number of arguments being passed to a procedure #55

Handle better incorrect number of arguments being passed to a procedure

Handle better incorrect number of arguments being passed to a procedure #55

Workflow file for this run

name: PyPy
on: [push, pull_request]
jobs:
pypy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
- {compiler: gcc, version: 12}
steps:
- uses: actions/checkout@v4
- name: Set up PyPy
uses: actions/setup-python@v5
with:
python-version: 'pypy3.9'
cache: 'pip'
- name: Install dependencies
run: |
pypy3 -m pip install --upgrade pip
pypy3 -m pip install build wheel
pypy3 -m pip install pytest numpy platformdirs cpyparsing
- uses: fortran-lang/setup-fortran@v1
id: setup-fortran
with:
compiler: ${{ matrix.toolchain.compiler }}
version: ${{ matrix.toolchain.version }}
- name: Build
run: pypy3 -m pip install .
- name: Test
run: pypy3 -m pytest -v