reworked derive macro, added macro tests #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install mingw-w64 | |
run: sudo apt-get -y install mingw-w64 | |
- name: Install target | |
run: rustup target add x86_64-pc-windows-gnu | |
- name: Build sample AddIn | |
working-directory: ./sample_addin_rs | |
run: cargo test -p native_api_1c_macro |