Skip to content

Commit

Permalink
ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
b4rtaz committed Jan 20, 2024
1 parent 374f193 commit 130d86d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 11 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: main
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Dependencies
id: dependencies
run: |
sudo apt-get update
sudo apt-get install build-essential gcc-8
- name: Build
id: build
run: |
CC=gcc-8 make main
11 changes: 0 additions & 11 deletions inference.sh

This file was deleted.

0 comments on commit 130d86d

Please sign in to comment.