Skip to content

Merge pull request #2 from tecnickcom/automation #24

Merge pull request #2 from tecnickcom/automation

Merge pull request #2 from tecnickcom/automation #24

Workflow file for this run

name: check
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
env:
NODE_VERSION: 18
PYTHON_VERSION: 3.x
permissions:
contents: read
jobs:
c:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- 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 build
#- name: coverage report
# uses: coverallsapp/github-action@v2
# with:
# format: lcov
# file: c/target/test/coverage/variantkey.info
go:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup go build environment
uses: actions/setup-go@v3
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)
javascript:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup node build environment
uses: actions/setup-node@v3
with:
node-version: '18'
- name: install dependencies
run: npm install --global uglify-js js-beautify
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: test
run: cd javascript && make build
python:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup python build environment
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade virtualenv
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: test
run: cd python && make vbuild
python-class:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup python build environment
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade virtualenv
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: test
run: cd python-class && make vbuild
r:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup R build environment
uses: r-lib/actions/setup-r@v2
- name: Install dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
working-directory: './r/variantkey/'
cache-version: 2
extra-packages: |
any::Rcpp
any::devtools
any::inline
any::pryr
any::renv
any::roxygen2
any::testthat
any::pkgdown
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: test
run: cd r && make build test