Skip to content

Commit

Permalink
Add GitHub actions for Cargo (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
kfarnung authored Jun 20, 2022
1 parent c2a2e26 commit ae2ad92
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/2019.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Advent of Code 2019

on:
push:
branches:
- main
paths:
- .github/workflows/2019.yml
- 2019/**
pull_request:
paths:
- .github/workflows/2019.yml
- 2019/**

jobs:
build-2019:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "2019"

steps:
- uses: actions/checkout@v3

- name: Build
run: cargo build

- name: Test
run: cargo test

0 comments on commit ae2ad92

Please sign in to comment.