feat: rename go keywords with trail underscore #27
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: Github Action | |
on: | |
pull_request: # trigger on pull requests | |
push: | |
branches: | |
- master # trigger on push to master | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- rust: stable | |
go: master | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test | |
run: | | |
rustup component add rustfmt | |
rustup component add clippy | |
make ci |