Merge branch 'master' into actions_testing
Some checks failed
Gitea Actions Test / build (pull_request) Failing after 1s

This commit is contained in:
hodasemi 2023-08-15 08:20:55 +02:00
commit 4887486f19

View file

@ -11,10 +11,16 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: echo " The job was automatically triggered by a ${{ gitea.event_name }} event." - name: Install stable toolchain
- run: echo " This job is now running on a ${{ runner.os }} server hosted by Gitea!" uses: actions-rs/toolchain@v1
- run: echo " The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." with:
toolchain: stable
override: true
- name: Build - name: Build
uses: actions-rs/cargo@v1
run: cargo build run: cargo build
- name: Run tests - name: Run tests
uses: actions-rs/cargo@v1
run: cargo test run: cargo test