Skip to content

Use fork

Use fork #275

Workflow file for this run

name: CI
on: push
jobs:
fpm-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain:
- { compiler: gcc, version: "13" }
- { compiler: intel, version: "2024.1" }
- { compiler: intel-classic, version: "2021.10" }
exclude:
- os: macos-latest
toolchain: { compiler: intel, version: "2024.1" }
include:
- os: ubuntu-latest
toolchain: { compiler: nvidia-hpc, version: "23.11" }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: wpbonelli/setup-fortran@848728b9f8f277e196a7e4e1afb61474c4869d2e
id: setup-fortran
with:
compiler: ${{ matrix.toolchain.compiler }}
version: ${{ matrix.toolchain.version }}
- uses: fortran-lang/setup-fpm@

Check failure on line 28 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 28, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'fortran-lang/setup-fpm@' Input string was not in a correct format.
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: fpm test
make-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
toolchain:
- { compiler: gcc, version: "13" }
- { compiler: intel, version: "2024.1" }
- { compiler: intel-classic, version: "2021.10" }
- { compiler: nvidia-hpc, version: "23.11" }
exclude:
- os: macos-latest
toolchain: { compiler: intel, version: "2024.1" }
- os: macos-latest
toolchain: { compiler: nvidia-hpc, version: "23.11" }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: fortran-lang/setup-fortran@v1
id: setup-fortran
with:
compiler: ${{ matrix.toolchain.compiler }}
version: ${{ matrix.toolchain.version }}
- run: ${{ steps.setup-fortran.outputs.fc }} --version
- run: make test FC=${{ steps.setup-fortran.outputs.fc }}
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Check formatting
run: |
pip install fprettify
diff=$(fprettify -i 2 -r . -d)
if [[ $diff ]]; then
red="\033[0;31m"
cyan="\033[0;36m"
reset="\033[0m"
printf -- "$diff\n"
printf "${red}The code is not correctly formatted. Please run: ${reset}\n"
printf "${cyan}fprettify -i 2 -r .${reset}\n"
exit 1
fi