diff --git a/.gitea/workflows/build_and_test.yml b/.gitea/workflows/build_and_test.yml new file mode 100644 index 0000000..fc28f31 --- /dev/null +++ b/.gitea/workflows/build_and_test.yml @@ -0,0 +1,16 @@ +name: "Build and test Rust binary in release mode" +on: push + +jobs: + build: + name: "Build and test" + runs-on: rust-bookworm + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Build + run: | + cargo build --release + - name: Test + run: | + cargo test diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 964d944..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,15 +0,0 @@ -image: rust:latest - -stages: - - build - - test - -build: - stage: build - script: - - cargo build --release - -test: - stage: test - script: - - cargo test