We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3078fc commit 4f43c40Copy full SHA for 4f43c40
.github/workflows/build.yml
@@ -5,16 +5,19 @@ on: [pull_request, push]
5
jobs:
6
build:
7
runs-on: ubuntu-20.04
8
+ container:
9
+ image: centos:7
10
steps:
11
- uses: actions/checkout@v3
12
- name: install dependencies
13
run: |
- sudo apt update
- sudo apt install -y python3
14
- sudo snap install go --classic
15
- pip3 install -r requirements.txt
+ yum update -y
+ yum install -y make python3 epel-release
16
+ yum install -y golang
17
+ python3 -m pip install --upgrade pip
18
- name: build
19
20
+ pip3 install -r requirements.txt
21
make dist
22
- name: upload artifact
23
uses: actions/upload-artifact@v3
0 commit comments