mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
125 lines
2.7 KiB
YAML
125 lines
2.7 KiB
YAML
name: ci
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
name: 'Unit- & API tests'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ^1.19
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Get dependencies
|
|
run: go get
|
|
|
|
- name: Unit Tests
|
|
run: CGO_ENABLED=0 go test `go list ./... | grep -v 'github.com/muety/wakapi/scripts'` -run ./... # skip scripts package, because not actually a package
|
|
|
|
- name: API Tests
|
|
run: |
|
|
npm -g install newman
|
|
./testing/run_api_tests.sh
|
|
|
|
mapi:
|
|
name: 'Automated pen-tests with Mayhem for API'
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CGO_ENABLED: 0
|
|
|
|
steps:
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ^1.19
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Get dependencies
|
|
run: go get
|
|
|
|
- name: Build
|
|
run: go build -v .
|
|
|
|
- name: start wakapi
|
|
run: ./wakapi --config config.default.yml &
|
|
|
|
- name: create a trivial testing user
|
|
run: sqlite3 wakapi_db.db "insert into users (id, api_key) values ('mapi', 'test-api-key')"
|
|
|
|
- name: Run Mayhem for API
|
|
uses: ForAllSecure/mapi-action@v1
|
|
continue-on-error: true
|
|
with:
|
|
mapi-token: ${{ secrets.MAPI_TOKEN }}
|
|
api-url: http://localhost:3000/api/
|
|
api-spec: static/docs/swagger.yaml
|
|
target: muety/wakapi
|
|
duration: 1min
|
|
sarif-report: mapi.sarif
|
|
run-args: |
|
|
--header-auth
|
|
Authorization: Basic dGVzdC1hcGkta2V5
|
|
|
|
- name: Upload SARIF file
|
|
uses: github/codeql-action/upload-sarif@v2
|
|
with:
|
|
sarif_file: mapi.sarif
|
|
|
|
build:
|
|
name: 'Build (Win, Linux, Mac)'
|
|
|
|
strategy:
|
|
matrix:
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
env:
|
|
CGO_ENABLED: 0
|
|
|
|
steps:
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ^1.19
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Get dependencies
|
|
run: go get
|
|
|
|
- name: Build
|
|
run: go build -v .
|
|
|
|
migration:
|
|
name: Migration tests
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
db: [sqlite, postgres, mysql, mariadb]
|
|
|
|
steps:
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ^1.19
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v3
|
|
|
|
- run: ./testing/run_api_tests.sh ${{ matrix.db }} --migration
|