Skip to content

update README with compiler version #265

update README with compiler version

update README with compiler version #265

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: update
run: sudo apt-get install gcc-12 make libfftw3-dev liblapacke-dev libpng-dev libopenblas-dev gfortran
- name: make all
run: CC=gcc-12 make all
- name: make utest
run: CC=gcc-12 make utest
- name: make test
run: CC=gcc-12 make test
- name: make pythontest
run: |
sudo apt install python3 python3-numpy
make pythontest