Skip to content

0.7.0

0.7.0 #2

Workflow file for this run

name: unit tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
submodules: true
- name: run unit tests
run: bazel test //test:all --test_tag_filters=-vcan
- name: upload artifacts
uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
bazel-bin/iso14229.h
bazel-bin/iso14229.c
- name: release
uses: softprops/action-gh-release@v3
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
bazel-bin/iso14229.h
bazel-bin/iso14229.c
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}