Skip to content

Added licence information. Added signed to unsigned functions. Minor … #12

Added licence information. Added signed to unsigned functions. Minor …

Added licence information. Added signed to unsigned functions. Minor … #12

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04 ]
env:
GCC_V: 13
steps:
- name: Checkout Source Code
uses: actions/checkout@v3
- name: Install Dependencies (Linux)
if: contains(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install -y gcc-${GCC_V} gfortran-${GCC_V} make
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${GCC_V} 100 \
--slave /usr/bin/gfortran gfortran /usr/bin/gfortran-${GCC_V}
- name: Build and Test (Linux)
if: contains(matrix.os, 'ubuntu')
run: |
which gfortran
gfortran --version
which gcc
gcc --version
make linux
make linux_examples