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@v2 with: go-version: 1.14 - uses: actions/checkout@v2 - name: Install revive run: go get github.com/mgechev/revive - 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