···11-# Github Actions
22-33-[](https://pkg.fluentci.io/rust_pipeline)
44-[](https://deno.land/x/rust_pipeline)
55-
66-[](https://codecov.io/gh/fluent-ci-templates/rust-pipeline)
77-88-The following command will generate a `.github/workflows/tests.yml` file in your project:
99-1010-```bash
1111-fluentci gh init -t rust_pipeline
1212-```
1313-1414-Or, if you already have a `.fluentci` folder (generated from `fluentci init -t rust`) in your project:
1515-1616-```bash
1717-fluentci gh init
1818-```
1919-2020-Generated file:
2121-2222-```yaml
2323-# Do not edit this file directly. It is generated by https://deno.land/x/fluent_github_actions
2424-2525-name: Test
2626-on:
2727- push:
2828- branches:
2929- - main
3030-jobs:
3131- test:
3232- runs-on: ubuntu-latest
3333- steps:
3434- - uses: actions/checkout@v2
3535- - uses: denoland/setup-deno@v1
3636- with:
3737- deno-version: v1.37
3838- - name: Setup Fluent CI CLI
3939- run: deno install -A -r https://cli.fluentci.io -n fluentci
4040- - name: Setup Dagger
4141- run: |
4242- curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.1 sh
4343- sudo mv bin/dagger /usr/local/bin
4444- dagger version
4545- - name: Run Tests and Build
4646- run: fluentci run rust_pipeline test build
4747-4848-```
4949-5050-Feel free to edit the template generator at `.fluentci/src/github/config.ts` to your needs.