2023-04-05 16:57:18 +00:00
|
|
|
# Copyright 2023 DigitalOcean
|
2022-02-14 16:48:18 +00:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
name: Tests
|
|
|
|
|
2023-04-05 16:57:18 +00:00
|
|
|
on:
|
2022-02-14 16:48:18 +00:00
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
pull_request:
|
2022-02-24 20:49:53 +00:00
|
|
|
branches: ['**']
|
2022-02-14 16:48:18 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
run-go-tests:
|
2023-01-24 22:39:04 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2022-02-14 16:48:18 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
2023-04-05 16:57:18 +00:00
|
|
|
go-version: '1.20'
|
2022-02-14 16:48:18 +00:00
|
|
|
|
2022-02-24 20:49:53 +00:00
|
|
|
# We only test the Ceph package since main depends on go-ceph
|
2022-02-14 16:48:18 +00:00
|
|
|
- name: Go test
|
2022-02-24 20:49:53 +00:00
|
|
|
run: go test -v ./ceph
|