change edition to 2018 #2
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: Static Musl Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build static | |
uses: stevenleadbeater/rust-musl-builder@master | |
with: | |
args: /bin/bash -c "cargo build --release --target=x86_64-unknown-linux-musl" |