Skip to content

Commit 9ef5400

Browse files
Introduced GitHub Actions initial workflow (#28)
It runs on the latest ubuntu, installl gcc and runs ./build.sh It was generated using GitHub Copilot
1 parent 325d802 commit 9ef5400

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/actions.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
13+
- name: Install GCC
14+
run: sudo apt-get install -y gcc
15+
16+
- name: Build
17+
run: ./build.sh

0 commit comments

Comments
 (0)