Reduce code optimisation for compatibility with gcc 13 #4
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: CI tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install build dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install fftw3-dev ghostscript imagemagick libcfitsio-dev libgsl-dev libkpathsea-dev libncurses-dev libpng-dev libreadline-dev libxml2-dev pkg-config python3 texlive-fonts-recommended texlive-latex-base texlive-latex-extra wget zlib1g-dev texlive-fonts-extra texlive-latex-recommended texlive-pstricks | |
- name: configure | |
run: ./configure | |
- name: build | |
run: make | |
- name: test | |
run: make test |