Observation #1110
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
mac: | |
name: macOS | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
# - name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v2 | |
- name: Select Xcode 15.3 | |
run: sudo xcode-select -s /Applications/Xcode_15.3.app | |
- name: LFS pull | |
run: git lfs pull | |
- name: Install Postgres | |
run: brew install postgresql@15 | |
- name: Link Postgres | |
run: brew link postgresql@15 | |
- name: Start Postgres | |
run: brew services start postgresql@15 | |
- name: Bootstrap | |
run: make bootstrap | |
- name: Run tests | |
run: make test | |
ubuntu: | |
name: Ubuntu | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: 'sudo apt-get --fix-missing update && sudo apt-get install -y wamerican' | |
- name: Bootstrap | |
run: make bootstrap-client | |
- name: Run tests | |
run: make test-server-linux |