IBConverter/.github/workflows/build.yml

18 lines
339 B
YAML
Raw Normal View History

2022-05-14 06:10:05 +00:00
name: Build
on: [ push ]
2022-05-14 06:06:31 +00:00
jobs:
2022-05-14 06:10:05 +00:00
build_and_test:
name: IBConverter
2022-05-14 06:06:31 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
2022-05-14 06:10:05 +00:00
args: --release --all-features