Skip to content

drop ubuntu 18.04, add ubuntu 20.04 to github actions #38

drop ubuntu 18.04, add ubuntu 20.04 to github actions

drop ubuntu 18.04, add ubuntu 20.04 to github actions #38

Workflow file for this run

name: cppcheck
on: [push, pull_request]
jobs:
build:
name: Runs cppcheck
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
- name: install packages
run: sudo apt install cppcheck
- name: run cppcheck
run: cppcheck/run_cppcheck.sh
- name: store the cppcheck output as an artifact
if: ${{ always() }}
uses: actions/upload-artifact@v2.2.4
with:
path: 'cppcheck/out/*'