Skip to content

Commit

Permalink
Add workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
kentlouisetonino committed Jul 30, 2024
1 parent 0bb6e51 commit 4abe811
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tempscale-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: TempScale (develop)

on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build
run: make build
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
## $\textnormal{Local Development}$

```sh
# Build the main file.
chmod +x build.sh
./build.sh

# Run the CLI tool.
chmod +x run.sh
./run.sh
Expand Down
3 changes: 3 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

make build

0 comments on commit 4abe811

Please sign in to comment.