| # Copyright 2023 Google LLC |
| # |
| # 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: mpact-riscv tests |
| on: |
| pull_request: |
| workflow_dispatch: |
| |
| jobs: |
| bazel_build_test: |
| name: "Build and test all bazel targets" |
| runs-on: ubuntu-22.04 |
| steps: |
| - name: Checking out repository |
| uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 |
| |
| - name: Build all targets |
| shell: bash |
| run: | |
| bazel build //... |
| |
| - name: Test all targets |
| shell: bash |
| run: | |
| bazel test //... |