Skip to content

Add Makefile targets for updates #27

Add Makefile targets for updates

Add Makefile targets for updates #27

Workflow file for this run

name: check
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
env:
NODE_VERSION: 14
PYTHON_VERSION: 3.x
permissions:
contents: read
jobs:
c:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: install dependencies
run: sudo apt install -y lcov astyle
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: test
run: cd c && make version test build
go:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: setup go build environment
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: test
run: cd go && make mod deps linter test GOPATH=$(go env GOPATH)
python:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: setup python build environment
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools virtualenv
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: test
run: cd python && make all