Skip to content

fixed USB_EP1_COM_BUFFER_ADDR #36

fixed USB_EP1_COM_BUFFER_ADDR

fixed USB_EP1_COM_BUFFER_ADDR #36

Workflow file for this run

name: "Build"
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Build release
run: nix develop --command make all
- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: firmware.hex
path: bin/main.hex
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Build release
run: nix develop --command bash -c "! astyle --project -n --dry-run src/*.{h,c} | grep '^Formatted'"