go-ceph/.github/workflows/main.yml

65 lines
1.6 KiB
YAML
Raw Normal View History

name: CI
# Run tests on pull requests and when changes are directly
# commited to master.
on:
push:
branches: [ master ]
pull_request:
branches:
- master
# run the CI also on PRs that are based on branches starting with pr/...
- 'pr/**'
schedule:
- cron: 1 1 * * *
jobs:
# Run static/code-quality checks
check:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.18
- uses: actions/checkout@v2
- name: Install revive
run: go install github.com/mgechev/revive@latest
- name: Run checks
run: make check
# Run the test suite in a container per-ceph-codename
test-suite:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ceph_version:
- "nautilus"
- "octopus"
- "pacific"
- "quincy"
- "pre-pacific"
- "pre-quincy"
- "main"
steps:
- uses: actions/checkout@v2
- name: Run tests
run: make test-containers-test "CEPH_VERSION=${{ matrix.ceph_version }}" "RESULTS_DIR=$PWD/_results"
- name: Clean up test containers
run: make test-containers-clean "CEPH_VERSION=${{ matrix.ceph_version }}"
- name: Archive test results
uses: actions/upload-artifact@v3
with:
name: "go-ceph-results-${{ matrix.ceph_version }}"
path: |
_results/
retention-days: 30
- name: Check API Versions and Aging
run: |
if [ -f _results/implements.json ]; then
./contrib/apiage.py
else
echo "Skipping apiage check"
fi