Skip to content

Commit

Permalink
chore(test.yml): revise workflow to install from source
Browse files Browse the repository at this point in the history
  • Loading branch information
ajborla committed May 8, 2024
1 parent df996fe commit eeef86f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Requires scripts:
# - bin/test

name: <track> / Test
name: harbour / Test

on:
push:
Expand All @@ -23,17 +23,17 @@ on:

jobs:
ci:
runs-on: <image-name>
runs-on: ubuntu-22.04

steps:
- name: Checkout repository
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b

- name: Use <setup tooling>
uses: <action to setup tooling>

- name: Install project dependencies
run: <install dependencies>
- name: Install Harbour
run: |
sudo apt update && sudo apt -y install curl build-essentials
curl -sLk https://sourceforge.net/projects/harbour-project/files/source/3.0.0/harbour-3.0.0.tar.gz > harbour-3.0.0.tar.gz
tar -zxvf harbour-3.0.0.tar.gz && cd harbour-3.0.0 && make && sudo make install && ldconfig
- name: Verify all exercises
run: bin/verify-exercises

0 comments on commit eeef86f

Please sign in to comment.