Skip to content

Commit

Permalink
Merge pull request #116 from WikiWatershed/jnh/travis-to-github-actions
Browse files Browse the repository at this point in the history
Add GitHub Actions workflow
  • Loading branch information
JN-Hernandez authored May 15, 2024
2 parents 3a23f1c + eb42a30 commit 134e31b
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: CI

on:
push:
branches:
- develop
- hotfix/**
- release/**
- test/**
pull_request:
workflow_dispatch:

jobs:
compile-then-run-tests:
name: Compile scala, run server, run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}

- uses: actions/setup-python@v5
with:
python-version: '3.11'

- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'

- name: Install and configure pipenv
run: |
PYTHON_PATH=$(which python)
pip install pipenv
pipenv --python $PYTHON_PATH
- name: Run setup script
run: ./scripts/setup

- name: Run test
run: ./scripts/citest
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Unreleased

- Add GitHub Actions workflow

## 6.1.0

- Updates max content length configuration for Akka Http 10.5,
Expand Down
10 changes: 10 additions & 0 deletions scripts/citest
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -x

./scripts/server >gh_output.txt 2>&1 &
# Wait for server to start up before testing
sleep 15
./scripts/test

# Uncomment following line to see server output in GitHub Actions
# cat gh_output.txt

0 comments on commit 134e31b

Please sign in to comment.