Skip to content

authproxy: MDM device identity authenticated HTTP requests #254

authproxy: MDM device identity authenticated HTTP requests

authproxy: MDM device identity authenticated HTTP requests #254

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
types: [opened, reopened, synchronize]
jobs:
build-test:
name: Build, test, and format
strategy:
matrix:
go-version: [1.17.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: setup go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race ./...
- name: Format
if: matrix.platform == 'ubuntu-latest'
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
mysql-integration-test:
name: Integration tests for the MySQL backend.
strategy:
matrix:
go-version: [1.17.x]
platform: [ubuntu-latest]
mysql-version: ['8.0']
runs-on: ${{ matrix.platform }}
services:
mysql:
image: mysql:8.0
env:
MYSQL_RANDOM_ROOT_PASSWORD: yes
MYSQL_DATABASE: nanomdm
MYSQL_USER: nanomdm
MYSQL_PASSWORD: nanomdm
ports:
- 3800:3306
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
defaults:
run:
shell: bash
env:
MYSQL_PWD: nanomdm
PORT: 3800
steps:
- uses: actions/checkout@v3
- name: setup go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Verify MySQL connection
run: |
while ! mysqladmin ping --host=localhost --port=$PORT --protocol=TCP --silent; do
sleep 1
done
- name: Set up schema
run: |
mysql --version
mysql --user=nanomdm --host=localhost --port=$PORT --protocol=TCP nanomdm < ./storage/mysql/schema.sql
- name: Test
run: go test -v --tags=integration ./storage/mysql/ -args -dsn "nanomdm:nanomdm@tcp(localhost:$PORT)/nanomdm"