Skip to content

Update README.md

Update README.md #733

name: Ubuntu-GCC10-CI
'on':
- push
- pull_request
permissions:
contents: read
jobs:
ci:
name: ubuntu-gcc
runs-on: ubuntu-latest
env:
CC: gcc-10
CXX: g++-10
steps:
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- run: |
sudo apt update
sudo apt install gcc-10 g++-10
shell: bash
- name: Build and Test
run: |
mkdir build
cd build
cmake ..
cmake --build .
ctest . --output-on-failure