Skip to content

adding mini srf (#51) #161

adding mini srf (#51)

adding mini srf (#51) #161

Workflow file for this run

name: Build & Test
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-20.04
container:
image: centos:7
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: |
yum update -y
yum install -y make python3 gcc
python3 -m pip install --upgrade pip
- name: build
run: |
pip3 install -r requirements.txt
make dist
- name: upload artifact
uses: actions/upload-artifact@v3
with:
name: perfspect
path: dist/perfspect*.tgz