on: push: branches: - next jobs: test: runs-on: docker steps: - uses: actions/checkout@v4 - name: Install Docker CLI run: | curl -fsSL https://get.docker.com -o get-docker.sh sh get-docker.sh sudo apt-get update && sudo apt-get upgrade -y - name: docker build run: docker build . - name: Test uses: https://git.kemitix.net/kemitix/rust@next with: args: cargo test - name: Build uses: https://git.kemitix.net/kemitix/rust@next with: args: cargo build - name: Run uses: https://git.kemitix.net/kemitix/rust@next with: args: cargo run