chore: fixing the formatting issue. #3
This file contains hidden or 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: "build" | |
| on: | |
| pull_request: | |
| branches: | |
| - "master" | |
| - "stable" | |
| push: | |
| branches: | |
| - "master" | |
| - "stable" | |
| jobs: | |
| build: | |
| runs-on: "ubuntu-24.04" | |
| steps: | |
| - name: "checkout repository" | |
| uses: "actions/checkout@v3" | |
| - name: "setup go" | |
| uses: "actions/setup-go@v3" | |
| with: | |
| go-version: "1.24" | |
| - name: "install python3-pytest" | |
| run: "sudo apt install -y python3-pytest" | |
| - name: "make install" | |
| run: "make install" | |
| - name: "make test" | |
| run: "make test" | |
| - name: "make smoke" | |
| run: "make smoke" | |
| - name: "make irctest" | |
| run: "make irctest" |