12345678910111213141516171819202122 |
- name: CI
- on:
- push:
- branches: [ main, master, develop ]
- pull_request:
- branches: [ main, master, develop ]
- env:
- CARGO_TERM_COLOR: always
- jobs:
- test-ubuntu-latest:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - name: test
- run: |
- rustup component add clippy
- sudo apt-get install tcl8.6 tclx
- make ci
|