Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add interactive CLI #20

Merged
merged 13 commits into from
Jul 19, 2024
15 changes: 15 additions & 0 deletions .github/workflows/build_native.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Build native
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build web
on: [push, pull_request]
permissions:
contents: write
Expand Down
Loading