Remove HPC compiler testing on CI and mention lfortran compatibility … #92
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: FortUTF Windows GFortran 13 | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: 'Windows Latest' | |
runs-on: 'windows-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup cmake | |
uses: jwlawson/actions-setup-cmake@v2 | |
with: | |
cmake-version: '3.31.x' | |
- name: Build and Run Tests | |
run: | | |
choco upgrade mingw --version="'13.2.0'" -y | |
choco install -y make | |
cmake -G "Unix Makefiles" -Bbuild -DBUILD_TESTS=ON | |
cmake --build build | |
./build/FortUTF_Tests.exe | |