diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml deleted file mode 100644 index d585e9d..0000000 --- a/.forgejo/workflows/demo.yaml +++ /dev/null @@ -1,6 +0,0 @@ -on: [push] -jobs: - test: - runs-on: docker - steps: - - run: echo All Good Now diff --git a/.forgejo/workflows/push-next-on-builder.yml b/.forgejo/workflows/push-next-on-builder.yml new file mode 100644 index 0000000..d19399e --- /dev/null +++ b/.forgejo/workflows/push-next-on-builder.yml @@ -0,0 +1,24 @@ +name: Rust + +on: + push: + branches: ["next"] + pull_request: + branches: ["main"] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: git-next-builder + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build + run: cargo build --verbose + + - name: Run tests + run: cargo test --verbose diff --git a/.forgejo/workflows/push-next-on-docker.yml b/.forgejo/workflows/push-next-on-docker.yml new file mode 100644 index 0000000..f74803e --- /dev/null +++ b/.forgejo/workflows/push-next-on-docker.yml @@ -0,0 +1,52 @@ +name: Rust + +on: + push: + branches: ["next"] + pull_request: + branches: ["main"] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: docker + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Toolchain + uses: https://github.com/actions-rs/toolchain@v1 + with: + toolchain: stable + + - name: Format + uses: https://github.com/actions-rs/cargo@v1 + with: + command: fmt + args: --all -- --check + + - name: Update apt + run: apt-get update + + - name: Install linkers + run: apt-get install -y clang-15 mold + + - name: Clippy + uses: https://github.com/actions-rs/cargo@v1 + with: + command: clippy + args: -- -D warnings + + - name: Build + uses: https://github.com/actions-rs/cargo@v1 + with: + command: build + # args: --release --all-features + + - name: Test + uses: https://github.com/actions-rs/cargo@v1 + with: + command: test