This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
Initial stab at provisioning API #190
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: Go | |
on: [push, pull_request] | |
env: | |
LIBSIGNAL_REF: "v0.22.2" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/checkout@v3 | |
with: | |
repository: signalapp/libsignal | |
path: libsignal | |
ref: ${{ env.LIBSIGNAL_REF }} | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.20" | |
- name: Install libolm | |
run: sudo apt-get install libolm-dev libolm3 | |
- name: Build libsignal | |
run: | | |
cd libsignal | |
cargo build -p libsignal-ffi --release --verbose | |
- name: Install dependencies | |
run: | | |
go install golang.org/x/tools/cmd/goimports@latest | |
go install honnef.co/go/tools/cmd/staticcheck@latest | |
export PATH="$HOME/go/bin:$PATH" | |
- name: Run pre-commit | |
uses: pre-commit/action@v3.0.0 | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: signalapp/libsignal | |
path: libsignal | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.20" | |
- name: Set up gotestfmt | |
uses: GoTestTools/gotestfmt-action@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install libolm | |
run: sudo apt-get install libolm-dev libolm3 | |
- name: Build libsignal | |
run: | | |
cd libsignal | |
cargo build -p libsignal-ffi --release --verbose | |
- name: Run tests | |
run: | | |
export LIBRARY_PATH=libsignal/target/release | |
go test -v -json ./pkg/libsignalgo -cover | gotestfmt |