oras.land/oras-go/v2@v2.5.1-0.20240520045656-aef90e4d04c4/.github/workflows/build.yml (about)

     1  # Copyright The ORAS Authors.
     2  # Licensed under the Apache License, Version 2.0 (the "License");
     3  # you may not use this file except in compliance with the License.
     4  # You may obtain a copy of the License at
     5  #
     6  # http://www.apache.org/licenses/LICENSE-2.0
     7  #
     8  # Unless required by applicable law or agreed to in writing, software
     9  # distributed under the License is distributed on an "AS IS" BASIS,
    10  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    11  # See the License for the specific language governing permissions and
    12  # limitations under the License.
    13  
    14  name: build
    15  
    16  on:
    17    push:
    18      branches: 
    19        - main
    20        - release-*
    21    pull_request:
    22      branches:
    23        - main
    24        - release-*
    25  
    26  jobs:
    27    build:
    28      runs-on: ubuntu-latest
    29      strategy:
    30        matrix:
    31          go-version: ['1.21', '1.22']
    32        fail-fast: true
    33      steps:
    34        - name: Checkout
    35          uses: actions/checkout@v4
    36        - name: Set up Go ${{ matrix.go-version }} environment
    37          uses: actions/setup-go@v5
    38          with:
    39            go-version: ${{ matrix.go-version }}
    40            check-latest: true
    41        - name: Run unit tests
    42          run: make test
    43        - name: Upload coverage to codecov.io
    44          uses: codecov/codecov-action@v4
    45          env:
    46            CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}