Skip to content

Commit

Permalink
Merge branch 'main' of github.com:anwolosz/synopsis into main
Browse files Browse the repository at this point in the history
  • Loading branch information
anwolosz committed Aug 21, 2024
2 parents ece6c5b + 666cdab commit 9dedd70
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

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

- name: Run tests
run: |
./src/scripts/test.sh
5 changes: 5 additions & 0 deletions src/scripts/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
set -ex
SCRIPT_FOLDER=$(dirname "${0}")
WORKSPACE_FOLDER=$(readlink -e "${SCRIPT_FOLDER}/../../")
echo "$WORKSPACE_FOLDER"

0 comments on commit 9dedd70

Please sign in to comment.