Skip to content

Update GitHub Action's operating system #105

Update GitHub Action's operating system

Update GitHub Action's operating system #105

Workflow file for this run

name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: dependencies
run: sudo apt-get install cmake make g++
- name: prepare
run: cmake .
- name: compilation
run: make
- name: test cases
run: ./run-tests