hishtory/.github/workflows/go-test.yml

58 lines
1.8 KiB
YAML
Raw Normal View History

name: Go Tests
2022-04-09 20:56:25 +02:00
on:
workflow_dispatch:
2022-09-17 20:54:26 +02:00
pull_request:
schedule:
- cron: '0 0 * * *'
2022-04-09 20:56:25 +02:00
push:
2022-04-09 20:58:49 +02:00
branches: [ master ]
2022-04-09 20:56:25 +02:00
jobs:
test:
2022-04-17 19:50:37 +02:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
2022-11-10 00:12:15 +01:00
os: [ubuntu-latest, macos-latest]
fail-fast: false
2022-04-09 20:56:25 +02:00
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
2022-04-09 20:56:25 +02:00
with:
go-version: 1.18
- name: Test setup
2022-04-17 20:56:00 +02:00
if: ${{ !startsWith(github.event.head_commit.message, 'Release') }}
run: |
# Install our dependencies
sudo apt-get update || true
sudo apt-get install -y zsh tmux fish || true
brew install fish tmux bash || true
# Work around a weird bug where zsh on ubuntu actions gives that directory 0777 which makes zsh refuse to start
sudo chmod 0755 -R /usr/share/zsh/ || true
# Set a consistent hostname so we can run tests that depend on it
sudo hostname ghaction-runner-hostname || true
sudo scutil --set HostName ghaction-runner-hostname || true
# Set up a tmpfs for ~/.hishtory/ to help tests run faster
mkdir ~/.hishtory/
2023-09-03 02:35:22 +02:00
sudo mount -F tmpfs -o size=500M swap ~/.hishtory/ || true
sudo diskutil apfs create $(sudo hdiutil attach -nomount ram://1024000) RAMDisk || true
sudo mount -o noatime -t apfs /Volumes/RAMDisk ~/.hishtory/ || true
- name: Go test
if: ${{ !startsWith(github.event.head_commit.message, 'Release') }}
run: |
# Force the time zone so that test output is consistent
export TZ='America/Los_Angeles'
# Run the tests
make test
# - name: Setup tmate session
# if: ${{ failure() }}
# uses: mxschmitt/action-tmate@v3
# with:
# limit-access-to-actor: true