Skip to content

Also run workflow on pull request #5

Also run workflow on pull request

Also run workflow on pull request #5

Workflow file for this run

on: [push, pull_request]
name: Build and Test
jobs:
test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Fetch
run: cargo fetch
- name: Build
run: cargo build
- name: Test
run: cargo test