Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
David Robertson committed Aug 18, 2023
1 parent 448a3aa commit 7b52bc7
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/dmr-test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,45 @@ permissions:
jobs:
end_to_end:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: syncv3
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
# services:
# postgres:
# image: postgres:13-alpine
# env:
# POSTGRES_USER: postgres
# POSTGRES_PASSWORD: postgres
# POSTGRES_DB: syncv3
# ports:
# - 5432:5432
# options: >-
# --health-cmd pg_isready
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
steps:
- uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19

- name: Build
run: go build ./cmd/syncv3

- name: Set up gotestfmt
uses: GoTestTools/gotestfmt-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
# - uses: actions/checkout@v3
#
# - name: Install Go
# uses: actions/setup-go@v4
# with:
# go-version: 1.19
#
# - name: Build
# run: go build ./cmd/syncv3
#
# - name: Set up gotestfmt
# uses: GoTestTools/gotestfmt-action@v2
# with:
# token: ${{ secrets.GITHUB_TOKEN }}

- name: Declare Python dependencies
run: echo "matrix-synapse==1.90.0" > /tmp/requirements.txt
run: echo "matrix-synapse==1.90.0" > requirements.txt

- name: Install Python and Synapse
uses: actions/setup-python@v4
with:
python-version: 3.11
cache: 'pip'
cache-dependency-path: '/tmp/requirements.txt'
cache-dependency-path: 'requirements.txt'

- run: pip list

Expand Down

0 comments on commit 7b52bc7

Please sign in to comment.