what the hell now it works (tic tac toe stuff) #22
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: MostlyBot Test PR | |
on: | |
pull_request: | |
branches: [ "main" ] | |
paths: [ "twitch/bot/**" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: cd twitch/bot && cargo build --verbose | |
- name: Run tests | |
run: cd twitch/bot && cargo test --verbose |