Skip to content

chore: remove python leftovers #16

chore: remove python leftovers

chore: remove python leftovers #16

Workflow file for this run

name: Build on push
on:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
target: [x86_64-unknown-linux-gnu]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup target
run: rustup target add ${{ matrix.target }}
- name: Build
run: cargo build --verbose --release --target ${{ matrix.target }}
- uses: actions/upload-artifact@v4
with:
name: comet-${{ matrix.target }}
path: target/${{ matrix.target }}/release/comet