mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 05:37:34 +03:00
71 lines
1.6 KiB
YAML
71 lines
1.6 KiB
YAML
name: "Testing"
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, dev ]
|
|
tags: [ "v*" ]
|
|
pull_request:
|
|
branches: [ master, dev ]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
checks: write
|
|
|
|
jobs:
|
|
golangci:
|
|
name: Lint
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- uses: golangci/golangci-lint-action@v6
|
|
with:
|
|
version: v1.60
|
|
args: "--timeout=30m"
|
|
buildsh:
|
|
name: "Verify build.sh"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- name: "Install libpam"
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libpam-dev
|
|
- name: "Verify build.sh"
|
|
run: |
|
|
./build.sh
|
|
./build.sh --destdir destdir/ install
|
|
find destdir/
|
|
test:
|
|
name: "Build and test"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- name: "Install libpam"
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libpam-dev
|
|
- name: "Unit & module tests"
|
|
run: |
|
|
go test ./... -coverprofile=coverage.out -covermode=atomic
|
|
- name: "Integration tests"
|
|
run: |
|
|
cd tests/
|
|
./run.sh
|
|
- uses: codecov/codecov-action@v2
|
|
with:
|
|
files: ./coverage.out
|
|
flags: unit
|
|
- uses: codecov/codecov-action@v2
|
|
with:
|
|
files: ./tests/coverage.out
|
|
flags: integration
|