github.com/buildtool/build-tools@v0.2.29-0.20240322150259-6a1d0a553c23/www/docs/ci/github.md (about) 1 # Github Actions 2 Build-tools can also be used within our official build-tools actions through [GitHub Actions] 3 4 You can create a workflow by putting YAML configuration to `.github/workflows/build.yml`. 5 6 Below is a simple snippet to use the [setup-buildtools-action] in your workflow: 7 8 ```yaml 9 name: Buildtool 10 on: [push] 11 12 jobs: 13 build: 14 runs-on: ubuntu-latest 15 steps: 16 - uses: actions/checkout@v1 17 - uses: buildtool/setup-buildtools-action@v1 18 - run: build 19 ``` 20 21 Read more about available [commands](/commands/build): 22 23 > For detailed intructions please follow GitHub Actions [syntax]. 24 25 [Github Actions]: https://github.com/features/actions 26 [setup-buildtools-action]: https://github.com/buildtool/setup-buildtools-action 27 [syntax]: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#About-yaml-syntax-for-workflows