Initial commit.
[rapid-gossip-sync-server] / .github / workflows / build.yml
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644 (file)
index 0000000..9ac4c21
--- /dev/null
@@ -0,0 +1,39 @@
+name: Cross-platform build verification
+on:
+  push:
+    branches:
+      - main
+  pull_request:
+    branches:
+      - "*"
+
+jobs:
+  build:
+    strategy:
+      fail-fast: false
+      matrix:
+        toolchain:
+          - stable
+          - 1.48.0
+          - beta
+        pinning: [true, false]
+    runs-on: ubuntu-latest
+    steps:
+      - name: Checkout source code
+        uses: actions/checkout@v3
+      - name: Install Rust ${{ matrix.toolchain }} toolchain
+        uses: actions-rs/toolchain@v1
+        with:
+          toolchain: ${{ matrix.toolchain }}
+          override: true
+          profile: minimal
+      - name: Pin dependencies
+        if: ${{ matrix.pinning }}
+        run: |
+          cargo update -p tokio-postgres --precise "0.7.5" --verbose
+          cargo update -p postgres-types --precise "0.2.3" --verbose
+          cargo update -p tokio --precise "1.14.1" --verbose
+          cargo update -p cpufeatures --precise "0.2.2" --verbose # https://github.com/RustCrypto/utils/issues/795
+      - name: Build on Rust ${{ matrix.toolchain }}
+        run: |
+          cargo build --verbose --color always