Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(test.yml): revise workflow to install from custom .deb package #37

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 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,20 @@ on:

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

steps:
- name: Checkout repository
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29

- 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 libc6-dev
sudo apt -y install curl libpcre3-dev libpcre3 libssl-dev
sudo apt -y install libslang2-dev libgpm-dev libncurses5-dev libncursesw5-dev
curl -LJO https://raw.githubusercontent.com/ajborla/download-harbour-deb/main/harbour_3.2.0-1_amd64.deb
sudo apt -y install ./harbour_3.2.0-1_amd64.deb

- name: Verify all exercises
run: bin/verify-exercises
Loading